| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <ldml>
- <identity>
- <version number="$Revision: 1.111 $"/>
- <generation date="$Date: 2009/06/15 03:46:25 $"/>
- <language type="lt"/>
- </identity>
- <localeDisplayNames>
- <languages>
- <language type="aa">afarų</language>
- <language type="ab">abchazų</language>
- <language type="ace">ačinezų</language>
- <language type="ach">acoli</language>
- <language type="ada">adangmų</language>
- <language type="ady">adygėjų</language>
- <language type="ae">avestų</language>
- <language type="af">afrikanų</language>
- <language type="afa">afroazijos kalba</language>
- <language type="afh">afrihili</language>
- <language type="ain">ainų</language>
- <language type="ak">akanų</language>
- <language type="akk">akadianų</language>
- <language type="ale">aleutų</language>
- <language type="alg">algonkuanų kalba</language>
- <language type="alt">pietų altajaus</language>
- <language type="am">amharų</language>
- <language type="an">aragonesų</language>
- <language type="ang">senoji anglų</language>
- <language type="anp">angikų</language>
- <language type="apa">apačių kalba</language>
- <language type="ar">arabų</language>
- <language type="arc">aramaikų</language>
- <language type="arn">araukanų</language>
- <language type="arp">arapahų</language>
- <language type="art">dirbtinė kalba</language>
- <language type="arw">aravakų</language>
- <language type="as">asamų</language>
- <language type="ast">asturianų</language>
- <language type="ath">athapaskanų kalba</language>
- <language type="aus">australų kalba</language>
- <language type="av">avarikų</language>
- <language type="awa">avadhi</language>
- <language type="ay">aimarų</language>
- <language type="az">azerbaidžaniečių</language>
- <language type="ba">baškirų</language>
- <language type="bad">bandų</language>
- <language type="bai">bamilekų kalba</language>
- <language type="bal">baluči</language>
- <language type="ban">balinezų</language>
- <language type="bas">basų</language>
- <language type="bat">baltų kalba</language>
- <language type="be">baltarusių</language>
- <language type="bej">bėjų</language>
- <language type="bem">bembų</language>
- <language type="ber">berberų</language>
- <language type="bg">bulgarų</language>
- <language type="bh">biharų</language>
- <language type="bho">baučpuri</language>
- <language type="bi">bislama</language>
- <language type="bik">bikolų</language>
- <language type="bin">bini</language>
- <language type="bla">siksika</language>
- <language type="bm">bambarų</language>
- <language type="bn">bengalų</language>
- <language type="bnt">bantų</language>
- <language type="bo">tibetiečių</language>
- <language type="br">bretonų</language>
- <language type="bra">brajų</language>
- <language type="bs">bosnių</language>
- <language type="btk">batakų</language>
- <language type="bua">buriatų</language>
- <language type="bug">buginezų</language>
- <language type="byn">blin</language>
- <language type="ca">katalonų</language>
- <language type="cad">kado</language>
- <language type="cai">Centrinės Amerikos indėnų kalba</language>
- <language type="car">karibų</language>
- <language type="cau">kaukaziečių kalba</language>
- <language type="cch">atsamų</language>
- <language type="ce">čečėnų</language>
- <language type="ceb">cebuanų</language>
- <language type="cel">keltų kalba</language>
- <language type="ch">čamorų</language>
- <language type="chb">čibča</language>
- <language type="chg">čagatų</language>
- <language type="chk">čukesų</language>
- <language type="chm">mari</language>
- <language type="chn">činuk žargonas</language>
- <language type="cho">čoktau</language>
- <language type="chp">čipvėjų</language>
- <language type="chr">čerokių</language>
- <language type="chy">čajenų</language>
- <language type="cmc">čamikų kalba</language>
- <language type="co">korsikiečių</language>
- <language type="cop">koptų</language>
- <language type="cpe">kreolų ir pidžinų kalba pagal anglų</language>
- <language type="cpf">kreolų ir pidžinų kalba pagal prancūzų</language>
- <language type="cpp">kreolų ir pidžinų kalba pagal portugalų</language>
- <language type="cr">kry</language>
- <language type="crh">krymo turkų</language>
- <language type="crp">kreolų ir pidžinų</language>
- <language type="cs">čekų</language>
- <language type="csb">kašubų</language>
- <language type="cu">bažnytinė slavų</language>
- <language type="cus">kušitik kalba</language>
- <language type="cv">čiuvašų</language>
- <language type="cy">valų</language>
- <language type="da">danų</language>
- <language type="dak">dakotų</language>
- <language type="dar">dargva</language>
- <language type="day">bidayuh kalba</language>
- <language type="de">vokiečių</language>
- <language type="de_AT">Austrijos vokiečių</language>
- <language type="de_CH">aukštoji Šveicarijos vokiečių</language>
- <language type="del">delavero</language>
- <language type="den">slave</language>
- <language type="dgr">dogribų</language>
- <language type="din">dinkų</language>
- <language type="doi">dogri</language>
- <language type="dra">dravidų kalba</language>
- <language type="dsb">Žemutinės Serbijos</language>
- <language type="dua">dualų</language>
- <language type="dum">Vidurio Vokietijos</language>
- <language type="dv">divehi</language>
- <language type="dyu">dyulų</language>
- <language type="dz">svazilando</language>
- <language type="ee">eve</language>
- <language type="efi">efik</language>
- <language type="egy">senovės egiptiečių</language>
- <language type="eka">ekajuk</language>
- <language type="el">graikų</language>
- <language type="elx">elamitų</language>
- <language type="en">anglų</language>
- <language type="en_AU">anglų kalba (australija)</language>
- <language type="en_CA">Kanados anglų</language>
- <language type="en_GB">anglų (britų)</language>
- <language type="en_US">anglų (amerikiečių)</language>
- <language type="enm">Vidurio Anglijos</language>
- <language type="eo">esperanto</language>
- <language type="es">ispanų</language>
- <language type="es_419">Lotynų Amerikos ispanų</language>
- <language type="es_ES">Iberijos ispanų</language>
- <language type="et">estų</language>
- <language type="eu">baskų</language>
- <language type="ewo">evondo</language>
- <language type="fa">persų</language>
- <language type="fan">fang</language>
- <language type="fat">fanti</language>
- <language type="ff">fulahų</language>
- <language type="fi">suomių</language>
- <language type="fil">tagalų</language>
- <language type="fiu">finougrų kalba</language>
- <language type="fj">fidžio</language>
- <language type="fo">farerų kalba</language>
- <language type="fon">fon</language>
- <language type="fr">prancūzų</language>
- <language type="fr_CA">Kanados prancūzų</language>
- <language type="fr_CH">Šveicarijos prancūzų</language>
- <language type="frm">Vidurio Prancūzijos</language>
- <language type="fro">senoji prancūzų</language>
- <language type="frr">šiaurinių fryzų</language>
- <language type="frs">rytų fryzų</language>
- <language type="fur">frulan</language>
- <language type="fy">vakarų fryzų</language>
- <language type="ga">airių</language>
- <language type="gaa">ga</language>
- <language type="gay">gajo</language>
- <language type="gba">gbaja</language>
- <language type="gd">škotų (gėlų)</language>
- <language type="gem">germanų kalba</language>
- <language type="gez">gyz</language>
- <language type="gil">kiribati</language>
- <language type="gl">galisų</language>
- <language type="gmh">Vidurio aukštosios Vokietijos</language>
- <language type="gn">gvaranių</language>
- <language type="goh">Senoji Aukštosios Vokietijos</language>
- <language type="gon">gondi</language>
- <language type="gor">gorontalo</language>
- <language type="got">gotų</language>
- <language type="grb">grebo</language>
- <language type="grc">senovės graikų</language>
- <language type="gsw">Šveicarijos vokiečių</language>
- <language type="gu">gudžaratų</language>
- <language type="gv">manks</language>
- <language type="gwi">gvičino</language>
- <language type="ha">hausų</language>
- <language type="hai">haido</language>
- <language type="haw">havajų</language>
- <language type="he">hebrajų</language>
- <language type="hi">hindi</language>
- <language type="hil">hiligainon</language>
- <language type="him">himačali</language>
- <language type="hit">hititų</language>
- <language type="hmn">hmong</language>
- <language type="ho">hiri motu</language>
- <language type="hr">kroatų</language>
- <language type="hsb">viršutinė sorbian</language>
- <language type="ht">haičio</language>
- <language type="hu">vengrų</language>
- <language type="hup">hupa</language>
- <language type="hy">armėnų</language>
- <language type="hz">herero</language>
- <language type="ia">interlingva</language>
- <language type="iba">iban</language>
- <language type="id">indoneziečių</language>
- <language type="ie">interkalba</language>
- <language type="ig">igbo</language>
- <language type="ii">sičuan ji</language>
- <language type="ijo">ijo</language>
- <language type="ik">inupiak</language>
- <language type="ilo">iloko</language>
- <language type="inc">indų kalba</language>
- <language type="ine">indoeuropiečių kalba</language>
- <language type="inh">ingušų</language>
- <language type="io">ido</language>
- <language type="ira">Iraniečių</language>
- <language type="iro">irako kalba</language>
- <language type="is">islandų</language>
- <language type="it">italų</language>
- <language type="iu">inukitut</language>
- <language type="ja">japonų</language>
- <language type="jbo">loiban</language>
- <language type="jpr">judėjų persų</language>
- <language type="jrb">judėjų arabų</language>
- <language type="jv">javiečių</language>
- <language type="ka">gruzinų</language>
- <language type="kaa">karakalpakų</language>
- <language type="kab">kabilo</language>
- <language type="kac">kačin</language>
- <language type="kaj">ju</language>
- <language type="kam">kamba</language>
- <language type="kar">karenų</language>
- <language type="kaw">kavi</language>
- <language type="kbd">kabardinų</language>
- <language type="kcg">tyap</language>
- <language type="kfo">koro</language>
- <language type="kg">kongo</language>
- <language type="kha">kasi</language>
- <language type="khi">koisan kalba</language>
- <language type="kho">kotanezų</language>
- <language type="ki">kikui</language>
- <language type="kj">kuaniama</language>
- <language type="kk">kazachų</language>
- <language type="kl">kalalisut</language>
- <language type="km">khmerų</language>
- <language type="kmb">kimbundu</language>
- <language type="kn">kanadų</language>
- <language type="ko">korėjiečių</language>
- <language type="kok">kankani</language>
- <language type="kos">kosreanų</language>
- <language type="kpe">kpele</language>
- <language type="kr">kanuri</language>
- <language type="krc">karačiajų balkarijos</language>
- <language type="krl">karelų</language>
- <language type="kro">kru kalba</language>
- <language type="kru">kuruk</language>
- <language type="ks">kašmyro</language>
- <language type="ku">kurdų</language>
- <language type="kum">kumik</language>
- <language type="kut">kutenai</language>
- <language type="kv">komi</language>
- <language type="kw">kornų</language>
- <language type="ky">kirgizų</language>
- <language type="la">lotynų</language>
- <language type="lad">ladino</language>
- <language type="lah">landa</language>
- <language type="lam">lamba</language>
- <language type="lb">liuksemburgiečių</language>
- <language type="lez">lezginų</language>
- <language type="lg">ganda</language>
- <language type="li">limburgiš</language>
- <language type="ln">lingala</language>
- <language type="lo">laosiečių</language>
- <language type="lol">mongo</language>
- <language type="loz">lozi</language>
- <language type="lt">lietuvių</language>
- <language type="lu">luba katanga</language>
- <language type="lua">luba lula</language>
- <language type="lui">luiseno</language>
- <language type="lun">lunda</language>
- <language type="luo">luo</language>
- <language type="lus">lušai</language>
- <language type="lv">latvių</language>
- <language type="mad">madurezų</language>
- <language type="mag">magahi</language>
- <language type="mai">maithili</language>
- <language type="mak">makasaro</language>
- <language type="man">mandingo</language>
- <language type="map">austronezų</language>
- <language type="mas">masajų</language>
- <language type="mdf">mokša</language>
- <language type="mdr">mandar</language>
- <language type="men">mende</language>
- <language type="mg">malagasijos</language>
- <language type="mga">Vidurio Airijos</language>
- <language type="mh">Maršalo salų</language>
- <language type="mi">maorių</language>
- <language type="mic">mikmak</language>
- <language type="min">minankabu</language>
- <language type="mis">įvairios kalbos</language>
- <language type="mk">makedonų</language>
- <language type="mkh">mon khmer kalba</language>
- <language type="ml">malajalių</language>
- <language type="mn">mongolų</language>
- <language type="mnc">manču</language>
- <language type="mni">manipuri</language>
- <language type="mno">manobo kalba</language>
- <language type="mo">moldavų</language>
- <language type="moh">mohok</language>
- <language type="mos">mosi</language>
- <language type="mr">maratų</language>
- <language type="ms">malajiečių</language>
- <language type="mt">maltiečių</language>
- <language type="mul">kelios kalbos</language>
- <language type="mun">munda kalba</language>
- <language type="mus">krykų</language>
- <language type="mwl">mirandezų</language>
- <language type="mwr">marvari</language>
- <language type="my">birmiečių</language>
- <language type="myn">majanų</language>
- <language type="myv">erzyjų</language>
- <language type="na">naurų</language>
- <language type="nah">nahuatlų</language>
- <language type="nai">Šiaurės Amerikos indėnų kalba</language>
- <language type="nap">neapoliečių</language>
- <language type="nb">Norvegijos bokmal</language>
- <language type="nd">šiaurės ndebelų</language>
- <language type="nds">Žemutinės Vokietijos</language>
- <language type="ne">nepalų</language>
- <language type="new">nevari</language>
- <language type="ng">ndongų</language>
- <language type="nia">nias</language>
- <language type="nic">Nigerio kordofanų kalba</language>
- <language type="niu">niuenų</language>
- <language type="nl">olandų</language>
- <language type="nl_BE">flamandų</language>
- <language type="nn">naujoji norvegų</language>
- <language type="no">norvegų</language>
- <language type="nog">nogų</language>
- <language type="non">norsu</language>
- <language type="nqo">enko</language>
- <language type="nr">pietų ndebele</language>
- <language type="nso">šiaurės sothų</language>
- <language type="nub">nubijos kalba</language>
- <language type="nv">navajų</language>
- <language type="nwc">klasikinė nevari</language>
- <language type="ny">nianja</language>
- <language type="nym">niamvezi</language>
- <language type="nyn">niankole</language>
- <language type="nyo">nioro</language>
- <language type="nzi">nzima</language>
- <language type="oc">provansalų</language>
- <language type="oj">ojibva</language>
- <language type="om">oromo</language>
- <language type="or">orijų</language>
- <language type="os">osetinų</language>
- <language type="osa">osage</language>
- <language type="ota">osmanų turkų</language>
- <language type="oto">otomanų kalba</language>
- <language type="pa">pandžabų</language>
- <language type="paa">papuasų kalba</language>
- <language type="pag">pangasinan</language>
- <language type="pal">pahlavi</language>
- <language type="pam">pampanga</language>
- <language type="pap">papiemento</language>
- <language type="pau">palau</language>
- <language type="peo">senoji persų</language>
- <language type="phi">filipinų kalba</language>
- <language type="phn">finikiečių</language>
- <language type="pi">pali</language>
- <language type="pl">lenkų</language>
- <language type="pon">ponapean</language>
- <language type="pra">prakrit kalba</language>
- <language type="pro">senovės provansalų</language>
- <language type="ps">puštūnų</language>
- <language type="pt">portugalų</language>
- <language type="pt_BR">portugalų (Brazilijos)</language>
- <language type="pt_PT">Iberijos portugalų</language>
- <language type="qu">kečujų</language>
- <language type="raj">radžastano</language>
- <language type="rap">rapanui</language>
- <language type="rar">rarotongan</language>
- <language type="rm">raeto romanų</language>
- <language type="rn">rundi</language>
- <language type="ro">rumunų</language>
- <language type="roa">romanų kalba</language>
- <language type="rom">romų kalba</language>
- <language type="root">rūt</language>
- <language type="ru">rusų</language>
- <language type="rup">aromanių</language>
- <language type="rw">kinjarvanda</language>
- <language type="sa">sanskritas</language>
- <language type="sad">sandavi</language>
- <language type="sah">jakutų</language>
- <language type="sai">Pietų Amerikos indėnų kalba</language>
- <language type="sal">sališan kalba</language>
- <language type="sam">samarėjų aramių</language>
- <language type="sas">sasak</language>
- <language type="sat">santali</language>
- <language type="sc">sardiniečių</language>
- <language type="scn">siciliečių</language>
- <language type="sco">škotų</language>
- <language type="sd">sindų</language>
- <language type="se">šiaurinių samių</language>
- <language type="sel">selkup</language>
- <language type="sem">samitų kalba</language>
- <language type="sg">sango</language>
- <language type="sga">senoji airių</language>
- <language type="sgn">ženklų kalba</language>
- <language type="sh">serbų-kroatų</language>
- <language type="shn">šan</language>
- <language type="si">sinhalų</language>
- <language type="sid">sidamo</language>
- <language type="sio">siouan kalba</language>
- <language type="sit">sino tibeto kalba</language>
- <language type="sk">slovakų</language>
- <language type="sl">slovėnų</language>
- <language type="sla">slavų kalba</language>
- <language type="sm">samoa</language>
- <language type="sma">pietų sami</language>
- <language type="smi">samių kalba</language>
- <language type="smj">lule sami</language>
- <language type="smn">inari sami</language>
- <language type="sms">skolt sami</language>
- <language type="sn">šona</language>
- <language type="snk">soninke</language>
- <language type="so">somalių</language>
- <language type="sog">sogdien</language>
- <language type="son">songhai</language>
- <language type="sq">albanų</language>
- <language type="sr">serbų</language>
- <language type="srn">sranan tongo</language>
- <language type="srr">sererų</language>
- <language type="ss">svati</language>
- <language type="ssa">Nilo Sacharos kalba</language>
- <language type="st">pietų sesuto</language>
- <language type="su">sundų</language>
- <language type="suk">sukuma</language>
- <language type="sus">susu</language>
- <language type="sux">šumerų</language>
- <language type="sv">švedų</language>
- <language type="sw">svahili</language>
- <language type="syc">klasikinė siriečių</language>
- <language type="syr">sirų</language>
- <language type="ta">tamilų</language>
- <language type="tai">tajų kalba</language>
- <language type="te">telugų</language>
- <language type="tem">timne</language>
- <language type="ter">tereno</language>
- <language type="tet">tetum</language>
- <language type="tg">tadžikų</language>
- <language type="th">tajų</language>
- <language type="ti">tigrajų</language>
- <language type="tig">tigre</language>
- <language type="tiv">tiv</language>
- <language type="tk">turkmėnų</language>
- <language type="tkl">tokelau</language>
- <language type="tl">tagalogų</language>
- <language type="tlh">„žvaigždžių kelionių“</language>
- <language type="tli">tlingit</language>
- <language type="tmh">tamašek</language>
- <language type="tn">tsvana</language>
- <language type="to">tonga</language>
- <language type="tog">niasa tongos</language>
- <language type="tpi">tok pisin</language>
- <language type="tr">turkų</language>
- <language type="ts">tsonga</language>
- <language type="tsi">tsimšian</language>
- <language type="tt">totorių</language>
- <language type="tum">tumbuka</language>
- <language type="tup">tupi kalba</language>
- <language type="tut">altaikų kalba</language>
- <language type="tvl">tuvalu</language>
- <language type="tw">tvi</language>
- <language type="ty">taitiečių</language>
- <language type="tyv">tuvių</language>
- <language type="udm">udmurtų</language>
- <language type="ug">uigūrų</language>
- <language type="uga">ugaritic</language>
- <language type="uk">ukrainiečių</language>
- <language type="umb">umbundu</language>
- <language type="und">nenustatyta kalba</language>
- <language type="ur">urdų</language>
- <language type="uz">uzbekų</language>
- <language type="vai">vai</language>
- <language type="ve">venda</language>
- <language type="vi">vietnamiečių</language>
- <language type="vo">volapiuk</language>
- <language type="vot">votik</language>
- <language type="wa">valonų</language>
- <language type="wak">vakašan kalba</language>
- <language type="wal">valamo</language>
- <language type="war">varai</language>
- <language type="was">vašo</language>
- <language type="wen">sorbų kalba</language>
- <language type="wo">volof</language>
- <language type="xal">kalmukų</language>
- <language type="xh">kosų</language>
- <language type="yao">jao</language>
- <language type="yap">japezų</language>
- <language type="yi">jidiš</language>
- <language type="yo">joruba</language>
- <language type="ypk">jupik kalba</language>
- <language type="za">chuang</language>
- <language type="zap">zapotekų</language>
- <language type="zbl">„Bliss“ simbolių kalba</language>
- <language type="zen">zenaga</language>
- <language type="zh">kinų</language>
- <language type="zh_Hans">kinų supaprastinta</language>
- <language type="zh_Hant">kinų tradicinė</language>
- <language type="znd">zande</language>
- <language type="zu">zulų</language>
- <language type="zun">zuni</language>
- <language type="zxx">Nėra kalbinio turinio</language>
- <language type="zza">zaza</language>
- </languages>
- <scripts>
- <script type="Arab">arabų</script>
- <script type="Armi">imperinė aramaikų</script>
- <script type="Armn">armėnų</script>
- <script type="Avst">avestano</script>
- <script type="Bali">Bali</script>
- <script type="Batk">batak</script>
- <script type="Beng">bengalų</script>
- <script type="Blis">„Bliss“ simboliai</script>
- <script type="Bopo">bopomofo</script>
- <script type="Brah">brahmi</script>
- <script type="Brai">brailio</script>
- <script type="Bugi">buginezų</script>
- <script type="Buhd">buhid</script>
- <script type="Cakm">čakma</script>
- <script type="Cans">suvienodinti Kanados aborigenų silabiniai</script>
- <script type="Cari">karių</script>
- <script type="Cham">čam</script>
- <script type="Cher">čerokių</script>
- <script type="Cirt">kirt</script>
- <script type="Copt">koptų</script>
- <script type="Cprt">kipro</script>
- <script type="Cyrl">kirilica</script>
- <script type="Cyrs">senoji bažnytinė slavų kirilica</script>
- <script type="Deva">devanagari</script>
- <script type="Dsrt">deseretas</script>
- <script type="Egyd">Egipto liaudies</script>
- <script type="Egyh">Egipto žynių</script>
- <script type="Egyp">egipto hieroglifai</script>
- <script type="Ethi">etiopų</script>
- <script type="Geok">gruzinų kutsuri</script>
- <script type="Geor">gruzinų</script>
- <script type="Glag">glagolitik</script>
- <script type="Goth">gotų</script>
- <script type="Grek">graikų</script>
- <script type="Gujr">gudžiarati</script>
- <script type="Guru">gurmuki</script>
- <script type="Hang">hangul</script>
- <script type="Hani">han</script>
- <script type="Hano">hanuno</script>
- <script type="Hans">supaprastinta han</script>
- <script type="Hant">tradicinė han</script>
- <script type="Hebr">hebrajų</script>
- <script type="Hira">hiragana</script>
- <script type="Hmng">pahav hmong</script>
- <script type="Hrkt">katakana/hiragana</script>
- <script type="Hung">senasis vengrų</script>
- <script type="Inds">indus</script>
- <script type="Ital">senasis italų</script>
- <script type="Java">javiečių</script>
- <script type="Jpan">japonų</script>
- <script type="Kali">kajah li</script>
- <script type="Kana">katakana</script>
- <script type="Khar">karošti</script>
- <script type="Khmr">khmerų</script>
- <script type="Knda">kanadiečių</script>
- <script type="Kore">korejiečių</script>
- <script type="Kthi">kaithi</script>
- <script type="Lana">lana</script>
- <script type="Laoo">lao</script>
- <script type="Latf">fraktur lotynų</script>
- <script type="Latg">gėlų lotynų</script>
- <script type="Latn">lotynų</script>
- <script type="Lepc">lepča</script>
- <script type="Limb">limbu</script>
- <script type="Lina">linijiniai A</script>
- <script type="Linb">linijiniai B</script>
- <script type="Lyci">lician</script>
- <script type="Lydi">lidian</script>
- <script type="Mand">mandėjų</script>
- <script type="Mani">maničų</script>
- <script type="Maya">malų hieroglifai</script>
- <script type="Mero">meroitik</script>
- <script type="Mlym">malajalų</script>
- <script type="Mong">mongolų</script>
- <script type="Moon">mūn</script>
- <script type="Mtei">meitei majek</script>
- <script type="Mymr">mianmaro</script>
- <script type="Nkoo">enko</script>
- <script type="Ogam">ogham</script>
- <script type="Olck">ol čiki</script>
- <script type="Orkh">orkon</script>
- <script type="Orya">orija</script>
- <script type="Osma">osmanų</script>
- <script type="Perm">senieji permės</script>
- <script type="Phag">pagsa pa</script>
- <script type="Phli">rašytiniai pahlavi</script>
- <script type="Phlp">pselter pahlavi</script>
- <script type="Phlv">buk pahvali</script>
- <script type="Phnx">foenikų</script>
- <script type="Plrd">polard fonetinė</script>
- <script type="Prti">rašytiniai partų</script>
- <script type="Qaai">paveldėtas</script>
- <script type="Rjng">rejang</script>
- <script type="Roro">rongorongo</script>
- <script type="Runr">runų</script>
- <script type="Samr">samariečių</script>
- <script type="Sara">sarati</script>
- <script type="Saur">sauraštra</script>
- <script type="Sgnw">ženklų raštas</script>
- <script type="Shaw">šavių</script>
- <script type="Sinh">sinhala</script>
- <script type="Sund">sundų</script>
- <script type="Sylo">syloti nagri</script>
- <script type="Syrc">sirų</script>
- <script type="Syre">estrangelo siriečių</script>
- <script type="Syrj">vakarų sirų</script>
- <script type="Syrn">rytų sirų</script>
- <script type="Tagb">tagbanva</script>
- <script type="Tale">tai le</script>
- <script type="Talu">naujasis Tailando lue</script>
- <script type="Taml">tamilų</script>
- <script type="Tavt">tai vet</script>
- <script type="Telu">telugų</script>
- <script type="Teng">tengvar</script>
- <script type="Tfng">tifinag</script>
- <script type="Tglg">tagalogų</script>
- <script type="Thaa">hana</script>
- <script type="Thai">tajų</script>
- <script type="Tibt">tibetiečių</script>
- <script type="Ugar">ugaritik</script>
- <script type="Vaii">vai</script>
- <script type="Visp">matoma kalba</script>
- <script type="Xpeo">senieji persų</script>
- <script type="Xsux">Šumero Akado dantiraštis</script>
- <script type="Yiii">ji</script>
- <script type="Zmth">matematiniai simboliai</script>
- <script type="Zsym">simbolių</script>
- <script type="Zxxx">neparašyta</script>
- <script type="Zyyy">bendras</script>
- <script type="Zzzz">nežinomi arba neteisingi rašmenys</script>
- </scripts>
- <territories>
- <territory type="001">Pasaulis</territory>
- <territory type="002">Afrika</territory>
- <territory type="003">Šiaurės Amerika</territory>
- <territory type="005">Pietų Amerika</territory>
- <territory type="009">Okeanija</territory>
- <territory type="011">Vakarų Afrika</territory>
- <territory type="013">Centrinė Amerika</territory>
- <territory type="014">Rytų Afrika</territory>
- <territory type="015">Šiaurės Afrika</territory>
- <territory type="017">Vidurio Afrika</territory>
- <territory type="018">Pietų Afrika [018]</territory>
- <territory type="019">Amerika</territory>
- <territory type="021">Šiaurinė Amerika</territory>
- <territory type="029">Karibai</territory>
- <territory type="030">Rytų Azija</territory>
- <territory type="034">Pietų Azija</territory>
- <territory type="035">Pietryčių Azija</territory>
- <territory type="039">Pietų Europa</territory>
- <territory type="053">Australija ir Naujoji Zelandija</territory>
- <territory type="054">Melanezija</territory>
- <territory type="057">Mikronezijos regionas</territory>
- <territory type="061">Polinezija</territory>
- <territory type="062">Pietų vidurio Azija</territory>
- <territory type="142">Azija</territory>
- <territory type="143">Centrinė Azija</territory>
- <territory type="145">Vakarų Azija</territory>
- <territory type="150">Europa</territory>
- <territory type="151">Rytų Europa</territory>
- <territory type="154">Šiaurės Europa</territory>
- <territory type="155">Vakarų Europa</territory>
- <territory type="172">Nepriklausomų Valstybių Sandrauga</territory>
- <territory type="200">Čekoslovakija</territory>
- <territory type="419">Lotynų Amerika ir Karibai</territory>
- <territory type="AD">Andora</territory>
- <territory type="AE">Jungtiniai Arabų Emyratai</territory>
- <territory type="AF">Afganistanas</territory>
- <territory type="AG">Antigva ir Barbuda</territory>
- <territory type="AI">Angilija</territory>
- <territory type="AL">Albanija</territory>
- <territory type="AM">Armėnija</territory>
- <territory type="AN">Olandijos Antilai</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antarktis</territory>
- <territory type="AR">Argentina</territory>
- <territory type="AS">Amerikos Samoa</territory>
- <territory type="AT">Austrija</territory>
- <territory type="AU">Australija</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Alandų salos</territory>
- <territory type="AZ">Azerbaidžanas</territory>
- <territory type="BA">Bosnija ir Hercegovina</territory>
- <territory type="BB">Barbadosas</territory>
- <territory type="BD">Bangladešas</territory>
- <territory type="BE">Belgija</territory>
- <territory type="BF">Burkina Fasas</territory>
- <territory type="BG">Bulgarija</territory>
- <territory type="BH">Bahreinas</territory>
- <territory type="BI">Burundis</territory>
- <territory type="BJ">Beninas</territory>
- <territory type="BL">Švento Baltramiejaus sala</territory>
- <territory type="BM">Bermuda</territory>
- <territory type="BN">Brunėjus</territory>
- <territory type="BO">Bolivija</territory>
- <territory type="BR">Brazilija</territory>
- <territory type="BS">Bahamos</territory>
- <territory type="BT">Butanas</territory>
- <territory type="BV">Bouvet sala</territory>
- <territory type="BW">Botsvana</territory>
- <territory type="BY">Baltarusija</territory>
- <territory type="BZ">Belizas</territory>
- <territory type="CA">Kanada</territory>
- <territory type="CC">Kokosų salos</territory>
- <territory type="CD">Kongo Demokratinė Respublika</territory>
- <territory type="CF">Centrinės Afrikos Respublika</territory>
- <territory type="CG">Kongas</territory>
- <territory type="CH">Šveicarija</territory>
- <territory type="CI">Dramblio Kaulo Krantas</territory>
- <territory type="CK">Kuko salos</territory>
- <territory type="CL">Čilė</territory>
- <territory type="CM">Kamerūnas</territory>
- <territory type="CN">Kinija</territory>
- <territory type="CO">Kolumbija</territory>
- <territory type="CR">Kosta Rika</territory>
- <territory type="CS">Serbija ir Juodkalnija</territory>
- <territory type="CU">Kuba</territory>
- <territory type="CV">Žaliasis Kyšulys</territory>
- <territory type="CX">Kalėdų sala</territory>
- <territory type="CY">Kipras</territory>
- <territory type="CZ">Čekija</territory>
- <territory type="DE">Vokietija</territory>
- <territory type="DJ">Džibutis</territory>
- <territory type="DK">Danija</territory>
- <territory type="DM">Dominika</territory>
- <territory type="DO">Dominikos Respublika</territory>
- <territory type="DZ">Alžyras</territory>
- <territory type="EC">Ekvadoras</territory>
- <territory type="EE">Estija</territory>
- <territory type="EG">Egiptas</territory>
- <territory type="EH">Vakarų Sachara</territory>
- <territory type="ER">Eritrėja</territory>
- <territory type="ES">Ispanija</territory>
- <territory type="ET">Etiopija</territory>
- <territory type="FI">Suomija</territory>
- <territory type="FJ">Fidžis</territory>
- <territory type="FK">Falklando salos</territory>
- <territory type="FM">Mikronezija</territory>
- <territory type="FO">Farerų salos</territory>
- <territory type="FR">Prancūzija</territory>
- <territory type="GA">Gabonas</territory>
- <territory type="GB">Didžioji Britanija</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Gruzija</territory>
- <territory type="GF">Prancūzijos Gviana</territory>
- <territory type="GG">Guernsis</territory>
- <territory type="GH">Gana</territory>
- <territory type="GI">Gibraltaras</territory>
- <territory type="GL">Grenlandija</territory>
- <territory type="GM">Gambija</territory>
- <territory type="GN">Gvinėja</territory>
- <territory type="GP">Gvadelupė</territory>
- <territory type="GQ">Pusiaujo Gvinėja</territory>
- <territory type="GR">Graikija</territory>
- <territory type="GS">Pietų Džordžija ir Pietų Sandvičo salos</territory>
- <territory type="GT">Gvatemala</territory>
- <territory type="GU">Guamas</territory>
- <territory type="GW">Bisau Gvinėja</territory>
- <territory type="GY">Gajana</territory>
- <territory type="HK">Kinijos S.A.R.Honkongas</territory>
- <territory type="HM">Heardo ir McDonaldo Salų Sritis</territory>
- <territory type="HN">Hondūras</territory>
- <territory type="HR">Kroatija</territory>
- <territory type="HT">Haitis</territory>
- <territory type="HU">Vengrija</territory>
- <territory type="ID">Indonezija</territory>
- <territory type="IE">Airija</territory>
- <territory type="IL">Izraelis</territory>
- <territory type="IM">Meino sala</territory>
- <territory type="IN">Indija</territory>
- <territory type="IO">Indijos vandenyno britų sritis</territory>
- <territory type="IQ">Irakas</territory>
- <territory type="IR">Iranas</territory>
- <territory type="IS">Islandija</territory>
- <territory type="IT">Italija</territory>
- <territory type="JE">Džersis</territory>
- <territory type="JM">Jamaika</territory>
- <territory type="JO">Jordanija</territory>
- <territory type="JP">Japonija</territory>
- <territory type="KE">Kenija</territory>
- <territory type="KG">Kirgiztanas</territory>
- <territory type="KH">Kambodža</territory>
- <territory type="KI">Kiribatis</territory>
- <territory type="KM">Komorai</territory>
- <territory type="KN">Sent Kitsas ir Nevis</territory>
- <territory type="KP">Šiaurės Korėja</territory>
- <territory type="KR">Pietų Korėja</territory>
- <territory type="KW">Kuveitas</territory>
- <territory type="KY">Kaimanų salos</territory>
- <territory type="KZ">Kazachstanas</territory>
- <territory type="LA">Laosas</territory>
- <territory type="LB">Libanas</territory>
- <territory type="LC">Šventoji Liucija</territory>
- <territory type="LI">Lichtenšteinas</territory>
- <territory type="LK">Šri Lanka</territory>
- <territory type="LR">Liberija</territory>
- <territory type="LS">Lesotas</territory>
- <territory type="LT">Lietuva</territory>
- <territory type="LU">Liuksemburgas</territory>
- <territory type="LV">Latvija</territory>
- <territory type="LY">Libija</territory>
- <territory type="MA">Marokas</territory>
- <territory type="MC">Monakas</territory>
- <territory type="MD">Moldova</territory>
- <territory type="ME">Juodkalnija</territory>
- <territory type="MF">Saint-Martin</territory>
- <territory type="MG">Madagaskaras</territory>
- <territory type="MH">Maršalo Salos</territory>
- <territory type="MK">Makedonija</territory>
- <territory type="ML">Malis</territory>
- <territory type="MM">Mianmaras</territory>
- <territory type="MN">Mongolija</territory>
- <territory type="MO">Macao</territory>
- <territory type="MP">Marianos šiaurinės salos</territory>
- <territory type="MQ">Martinika</territory>
- <territory type="MR">Mauritanija</territory>
- <territory type="MS">Montserratas</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Mauricijus</territory>
- <territory type="MV">Maldivai</territory>
- <territory type="MW">Malavis</territory>
- <territory type="MX">Meksika</territory>
- <territory type="MY">Malaizija</territory>
- <territory type="MZ">Mozambikas</territory>
- <territory type="NA">Namibija</territory>
- <territory type="NC">Naujoji Kaledonija</territory>
- <territory type="NE">Nigeris</territory>
- <territory type="NF">Norfolko sala</territory>
- <territory type="NG">Nigerija</territory>
- <territory type="NI">Nikaragva</territory>
- <territory type="NL">Nyderlandai</territory>
- <territory type="NO">Norvegija</territory>
- <territory type="NP">Nepalas</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Naujoji Zelandija</territory>
- <territory type="OM">Omanas</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Peru</territory>
- <territory type="PF">Prancūzų Polinezija</territory>
- <territory type="PG">Papua Naujoji Gvinėja</territory>
- <territory type="PH">Filipinai</territory>
- <territory type="PK">Pakistanas</territory>
- <territory type="PL">Lenkija</territory>
- <territory type="PM">Sen Pjeras ir Mikelonas</territory>
- <territory type="PN">Pitkernas</territory>
- <territory type="PR">Puerto Rikas</territory>
- <territory type="PS">Palestinos teritorija</territory>
- <territory type="PT">Portugalija</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paragvajus</territory>
- <territory type="QA">Kataras</territory>
- <territory type="QU">Europos Sąjunga</territory>
- <territory type="RE">Reunionas</territory>
- <territory type="RO">Rumunija</territory>
- <territory type="RS">Serbija</territory>
- <territory type="RU">Rusijos Federacija</territory>
- <territory type="RW">Ruanda</territory>
- <territory type="SA">Saudo Arabija</territory>
- <territory type="SB">Saliamono salos</territory>
- <territory type="SC">Seišeliai</territory>
- <territory type="SD">Sudanas</territory>
- <territory type="SE">Švedija</territory>
- <territory type="SG">Singapūras</territory>
- <territory type="SH">Šventoji Elena</territory>
- <territory type="SI">Slovėnija</territory>
- <territory type="SJ">Svalbardo ir Jan Majen salos</territory>
- <territory type="SK">Slovakija</territory>
- <territory type="SL">Siera Leonė</territory>
- <territory type="SM">San Marinas</territory>
- <territory type="SN">Senegalas</territory>
- <territory type="SO">Somalis</territory>
- <territory type="SR">Surinamas</territory>
- <territory type="ST">San Tomė ir Principė</territory>
- <territory type="SV">Salvadoras</territory>
- <territory type="SY">Sirija</territory>
- <territory type="SZ">Svazilendas</territory>
- <territory type="TC">Turkso ir Caicoso salos</territory>
- <territory type="TD">Čadas</territory>
- <territory type="TF">Prancūzijos Pietų sritys</territory>
- <territory type="TG">Togas</territory>
- <territory type="TH">Tailandas</territory>
- <territory type="TJ">Tadžikistanas</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Rytų Timoras</territory>
- <territory type="TM">Turkmėnistanas</territory>
- <territory type="TN">Tunisas</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turkija</territory>
- <territory type="TT">Trinidadas ir Tobagas</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taivanas</territory>
- <territory type="TZ">Tanzanija</territory>
- <territory type="UA">Ukraina</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Jungtinių Valstijų mažosios aplinkinės salos</territory>
- <territory type="US">Jungtinės Valstijos</territory>
- <territory type="UY">Urugvajus</territory>
- <territory type="UZ">Uzbekistanas</territory>
- <territory type="VA">Vatikanas</territory>
- <territory type="VC">Šventasis Vincentas ir Grenadinai</territory>
- <territory type="VE">Venesuela</territory>
- <territory type="VG">Didžiosios Britanijos Mergelių salos</territory>
- <territory type="VI">Mergelių salos (JAV)</territory>
- <territory type="VN">Vietnamas</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallisas ir Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="YE">Jemenas</territory>
- <territory type="YT">Mayotte’as</territory>
- <territory type="ZA">Pietų Afrika</territory>
- <territory type="ZM">Zambija</territory>
- <territory type="ZW">Zimbabvė</territory>
- <territory type="ZZ">Nežinoma ar neteisinga sritis</territory>
- </territories>
- <variants>
- <variant type="POSIX">Kompiuteris</variant>
- </variants>
- <keys>
- <key type="calendar">kalendorius</key>
- <key type="collation">lyginimas</key>
- <key type="currency">valiuta</key>
- </keys>
- <types>
- <type type="buddhist" key="calendar">Budistų kalendorius</type>
- <type type="chinese" key="calendar">Kiniečių kalendorius</type>
- <type type="gregorian" key="calendar">Grigaliaus kalendorius</type>
- <type type="hebrew" key="calendar">Hebrajų kalendorius</type>
- <type type="islamic" key="calendar">Islamo kalendorius</type>
- <type type="japanese" key="calendar">Japonų kalendorius</type>
- <type type="roc" key="calendar">Kinijos respublikos kalendorius</type>
- </types>
- <measurementSystemNames>
- <measurementSystemName type="metric">Metrinė</measurementSystemName>
- <measurementSystemName type="US">JAV</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language">Kalba: {0}</codePattern>
- <codePattern type="script">Rašmenys: {0}</codePattern>
- <codePattern type="territory">Sritis: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <characters>
- <exemplarCharacters>[a ą b c č d e ę ė f-i į y j-p r s š t u ų ū v z ž]</exemplarCharacters>
- <exemplarCharacters type="auxiliary">[{į\u0307} {i\u0307} {i\u0307\u0301} {i\u0307\u0300} {i\u0307\u0303} {j\u0307} q w x]</exemplarCharacters>
- <exemplarCharacters type="currencySymbol">[a ą b c č d e ę ė f-i į y j-p r s š t u ų ū v z ž]</exemplarCharacters>
- </characters>
- <delimiters>
- <quotationStart>„</quotationStart>
- <quotationEnd>“</quotationEnd>
- <alternateQuotationStart>„</alternateQuotationStart>
- <alternateQuotationEnd>“</alternateQuotationEnd>
- </delimiters>
- <dates>
- <dateRangePattern>{0}−{1}</dateRangePattern>
- <calendars>
- <calendar type="buddhist">
- <am>ryte</am>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>y G, MMMM d, EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">Sau</month>
- <month type="2">Vas</month>
- <month type="3">Kov</month>
- <month type="4">Bal</month>
- <month type="5">Geg</month>
- <month type="6">Bir</month>
- <month type="7">Lie</month>
- <month type="8">Rgp</month>
- <month type="9">Rgs</month>
- <month type="10">Spl</month>
- <month type="11">Lap</month>
- <month type="12">Grd</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">sausio</month>
- <month type="2">vasario</month>
- <month type="3">kovo</month>
- <month type="4">balandžio</month>
- <month type="5">gegužės</month>
- <month type="6">birželio</month>
- <month type="7">liepos</month>
- <month type="8">rugpjūčio</month>
- <month type="9">rugsėjo</month>
- <month type="10">spalio</month>
- <month type="11">lapkričio</month>
- <month type="12">gruodžio</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="narrow">
- <month type="1">S</month>
- <month type="2">V</month>
- <month type="3">K</month>
- <month type="4">B</month>
- <month type="5">G</month>
- <month type="6">B</month>
- <month type="7">L</month>
- <month type="8">R</month>
- <month type="9">R</month>
- <month type="10">S</month>
- <month type="11">L</month>
- <month type="12">G</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">Sausis</month>
- <month type="2">Vasaris</month>
- <month type="3">Kovas</month>
- <month type="4">Balandis</month>
- <month type="5">Gegužė</month>
- <month type="6">Birželis</month>
- <month type="7">Liepa</month>
- <month type="8">Rugpjūtis</month>
- <month type="9">Rugsėjis</month>
- <month type="10">Spalis</month>
- <month type="11">Lapkritis</month>
- <month type="12">Gruodis</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">Sk</day>
- <day type="mon">Pr</day>
- <day type="tue">An</day>
- <day type="wed">Tr</day>
- <day type="thu">Kt</day>
- <day type="fri">Pn</day>
- <day type="sat">Št</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">sekmadienis</day>
- <day type="mon">pirmadienis</day>
- <day type="tue">antradienis</day>
- <day type="wed">trečiadienis</day>
- <day type="thu">ketvirtadienis</day>
- <day type="fri">penktadienis</day>
- <day type="sat">šeštadienis</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="narrow">
- <day type="sun">S</day>
- <day type="mon">P</day>
- <day type="tue">A</day>
- <day type="wed">T</day>
- <day type="thu">K</day>
- <day type="fri">P</day>
- <day type="sat">Š</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">K1</quarter>
- <quarter type="2">K2</quarter>
- <quarter type="3">K3</quarter>
- <quarter type="4">K4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">pirmas ketvirtis</quarter>
- <quarter type="2">antras ketvirtis</quarter>
- <quarter type="3">trečias ketvirtis</quarter>
- <quarter type="4">ketvirtas ketvirtis</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1">1K</quarter>
- <quarter type="2">2K</quarter>
- <quarter type="3">3K</quarter>
- <quarter type="4">4K</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <am>priešpiet</am>
- <pm>popiet</pm>
- <eras>
- <eraNames>
- <era type="0">prieš Kristų</era>
- <era type="1">po Kristaus</era>
- </eraNames>
- <eraAbbr>
- <era type="0">pr. Kr.</era>
- <era type="1">po Kr.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>y 'm'. MMMM d 'd'.,EEEE</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>y 'm'. MMMM d 'd'.</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>yyyy.MM.dd</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>yyyy-MM-dd</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>HH:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>HH:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>HH:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>HH:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <availableFormats>
- <dateFormatItem id="hhmm">hh:mm a</dateFormatItem>
- <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
- <dateFormatItem id="hhmmss">hh:mm:ss a</dateFormatItem>
- <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
- <dateFormatItem id="MMdd">MM.dd</dateFormatItem>
- <dateFormatItem id="MMMdd">MMM-dd</dateFormatItem>
- <dateFormatItem id="yyQ">Q yy</dateFormatItem>
- <dateFormatItem id="yyyyMM">yyyy.MM</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d-d</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="h">HH-HH</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="h">HH:mm-HH:mm v</greatestDifference>
- <greatestDifference id="m">HH:mm-HH:mm 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">MM-dd - MM-dd</greatestDifference>
- <greatestDifference id="M">MM-dd - MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">MM-ddE - MM-ddE</greatestDifference>
- <greatestDifference id="M">MM-ddE - MM-ddE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">MMM-MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">MMM d 'd'.-d 'd'.</greatestDifference>
- <greatestDifference id="M">MMM d 'd'. - MMM d 'd'.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">MMM d 'd'.E - d 'd'.E</greatestDifference>
- <greatestDifference id="M">MMM d 'd'.E - MMM d 'd'.E</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y-y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">yyyy-MM - yyyy-MM</greatestDifference>
- <greatestDifference id="y">yyyy-MM - yyyy-MM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
- <greatestDifference id="M">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
- <greatestDifference id="y">yyyy-MM-dd - yyyy-MM-dd</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
- <greatestDifference id="M">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
- <greatestDifference id="y">yyyy-MM-ddE - yyyy-MM-ddE</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">y 'm'. MMM-MMM</greatestDifference>
- <greatestDifference id="y">y 'm'. MMM - y 'm'. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">y 'm'. MMM d 'd'.-d 'd'.</greatestDifference>
- <greatestDifference id="M">y 'm'. MMM d 'd'. - MMM d 'd'.</greatestDifference>
- <greatestDifference id="y">y 'm'. MMM d 'd'. - y 'm'. MMM d 'd'.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">y 'm'. MMM d 'd'.,E - d 'd'.,E</greatestDifference>
- <greatestDifference id="M">y 'm'. MMM d 'd'.,E - MMM d 'd'.,E</greatestDifference>
- <greatestDifference id="y">y 'm'. MMM d 'd'.,E - y 'm'. MMM d 'd'.,E</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- <fields>
- <field type="era">
- <displayName>era</displayName>
- </field>
- <field type="year">
- <displayName>metai</displayName>
- </field>
- <field type="month">
- <displayName>mėnuo</displayName>
- </field>
- <field type="week">
- <displayName>savaitė</displayName>
- </field>
- <field type="day">
- <displayName>diena</displayName>
- <relative type="-3">už užvakar</relative>
- <relative type="-2">užvakar</relative>
- <relative type="-1">vakar</relative>
- <relative type="0">šiandien</relative>
- <relative type="1">rytoj</relative>
- <relative type="2">poryt</relative>
- <relative type="3">užporyt</relative>
- </field>
- <field type="weekday">
- <displayName>savaitės diena</displayName>
- </field>
- <field type="dayperiod">
- <displayName>dienos metas</displayName>
- </field>
- <field type="hour">
- <displayName>valanda</displayName>
- </field>
- <field type="minute">
- <displayName>minutė</displayName>
- </field>
- <field type="second">
- <displayName>sekundė</displayName>
- </field>
- <field type="zone">
- <displayName>juosta</displayName>
- </field>
- </fields>
- </calendar>
- </calendars>
- <timeZoneNames>
- <hourFormat>+HH:mm;−HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <regionFormat>{0}</regionFormat>
- <fallbackFormat>{0} ({1})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Nežinoma</exemplarCity>
- </zone>
- <zone type="Europe/Andorra">
- <exemplarCity>Andora</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity>Dubajus</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity>Kabulas</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity>Tirana</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity>Jerevanas</exemplarCity>
- </zone>
- <zone type="Antarctica/Palmer">
- <exemplarCity>Palmeris</exemplarCity>
- </zone>
- <zone type="Antarctica/South_Pole">
- <exemplarCity>Pietų ašigalis</exemplarCity>
- </zone>
- <zone type="Antarctica/Syowa">
- <exemplarCity>Syova</exemplarCity>
- </zone>
- <zone type="Antarctica/Vostok">
- <exemplarCity>Vostokas</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity>Dumont D'Urville</exemplarCity>
- </zone>
- <zone type="America/Argentina/Rio_Gallegos">
- <exemplarCity>Rio Galjegosas</exemplarCity>
- </zone>
- <zone type="America/Mendoza">
- <exemplarCity>Mendosa</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Juan">
- <exemplarCity>San Chuanas</exemplarCity>
- </zone>
- <zone type="America/Argentina/Ushuaia">
- <exemplarCity>Ušuaja</exemplarCity>
- </zone>
- <zone type="America/Argentina/La_Rioja">
- <exemplarCity>La Riocha</exemplarCity>
- </zone>
- <zone type="America/Argentina/San_Luis">
- <exemplarCity>Sent Luisas</exemplarCity>
- </zone>
- <zone type="America/Catamarca">
- <exemplarCity>Katamarka</exemplarCity>
- </zone>
- <zone type="America/Jujuy">
- <exemplarCity>Chuchujus</exemplarCity>
- </zone>
- <zone type="America/Argentina/Tucuman">
- <exemplarCity>Tukumanas</exemplarCity>
- </zone>
- <zone type="America/Cordoba">
- <exemplarCity>Kordoba</exemplarCity>
- </zone>
- <zone type="America/Buenos_Aires">
- <exemplarCity>Buenos Airės</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity>Viena</exemplarCity>
- </zone>
- <zone type="Australia/Perth">
- <exemplarCity>Pertas</exemplarCity>
- </zone>
- <zone type="Australia/Darwin">
- <exemplarCity>Darvinas</exemplarCity>
- </zone>
- <zone type="Australia/Adelaide">
- <exemplarCity>Adelaidė</exemplarCity>
- </zone>
- <zone type="Australia/Melbourne">
- <exemplarCity>Melburnas</exemplarCity>
- </zone>
- <zone type="Australia/Hobart">
- <exemplarCity>Hobartas</exemplarCity>
- </zone>
- <zone type="Australia/Sydney">
- <exemplarCity>Sidnėjus</exemplarCity>
- </zone>
- <zone type="Australia/Brisbane">
- <exemplarCity>Brisbanas</exemplarCity>
- </zone>
- <zone type="Australia/Lord_Howe">
- <exemplarCity>Lordo Hau sala</exemplarCity>
- </zone>
- <zone type="America/Barbados">
- <exemplarCity>Barbadosas</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity>Daka</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity>Briuselis</exemplarCity>
- </zone>
- <zone type="Europe/Sofia">
- <exemplarCity>Sofija</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity>Bahreinas</exemplarCity>
- </zone>
- <zone type="Africa/Porto-Novo">
- <exemplarCity>Porto Novas</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity>Bermudų salos</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity>Brunėjus</exemplarCity>
- </zone>
- <zone type="America/La_Paz">
- <exemplarCity>La Pasas</exemplarCity>
- </zone>
- <zone type="America/Rio_Branco">
- <exemplarCity>Rio Brankas</exemplarCity>
- </zone>
- <zone type="America/Manaus">
- <exemplarCity>Manausas</exemplarCity>
- </zone>
- <zone type="America/Cuiaba">
- <exemplarCity>Kujaba</exemplarCity>
- </zone>
- <zone type="America/Santarem">
- <exemplarCity>Santarenas</exemplarCity>
- </zone>
- <zone type="America/Belem">
- <exemplarCity>Belemas</exemplarCity>
- </zone>
- <zone type="America/Sao_Paulo">
- <exemplarCity>San Paulas</exemplarCity>
- </zone>
- <zone type="America/Recife">
- <exemplarCity>Resifė</exemplarCity>
- </zone>
- <zone type="Africa/Gaborone">
- <exemplarCity>Gaboronas</exemplarCity>
- </zone>
- <zone type="Europe/Minsk">
- <exemplarCity>Minskas</exemplarCity>
- </zone>
- <zone type="America/Belize">
- <exemplarCity>Belizas</exemplarCity>
- </zone>
- <zone type="America/Dawson">
- <exemplarCity>Dosonas</exemplarCity>
- </zone>
- <zone type="America/Whitehorse">
- <exemplarCity>Vaithorsas</exemplarCity>
- </zone>
- <zone type="America/Vancouver">
- <exemplarCity>Vankuveris</exemplarCity>
- </zone>
- <zone type="America/Dawson_Creek">
- <exemplarCity>Dosono įlanka</exemplarCity>
- </zone>
- <zone type="America/Yellowknife">
- <exemplarCity>Jelounaifas</exemplarCity>
- </zone>
- <zone type="America/Edmonton">
- <exemplarCity>Edmontonas</exemplarCity>
- </zone>
- <zone type="America/Cambridge_Bay">
- <exemplarCity>Kembridžo įlanka</exemplarCity>
- </zone>
- <zone type="America/Regina">
- <exemplarCity>Redžina</exemplarCity>
- </zone>
- <zone type="America/Winnipeg">
- <exemplarCity>Vinipegas</exemplarCity>
- </zone>
- <zone type="America/Thunder_Bay">
- <exemplarCity>Tander Bėjus</exemplarCity>
- </zone>
- <zone type="America/Nipigon">
- <exemplarCity>Nipigonas</exemplarCity>
- </zone>
- <zone type="America/Toronto">
- <exemplarCity>Torontas</exemplarCity>
- </zone>
- <zone type="America/Montreal">
- <exemplarCity>Monrealis</exemplarCity>
- </zone>
- <zone type="America/Iqaluit">
- <exemplarCity>Ikaluitas</exemplarCity>
- </zone>
- <zone type="America/Pangnirtung">
- <exemplarCity>Pangnirtungas</exemplarCity>
- </zone>
- <zone type="America/Moncton">
- <exemplarCity>Monktonas</exemplarCity>
- </zone>
- <zone type="America/Halifax">
- <exemplarCity>Halifaksas</exemplarCity>
- </zone>
- <zone type="Africa/Kinshasa">
- <exemplarCity>Kinšasa</exemplarCity>
- </zone>
- <zone type="Africa/Lubumbashi">
- <exemplarCity>Lubumbašis</exemplarCity>
- </zone>
- <zone type="Africa/Brazzaville">
- <exemplarCity>Brazavilis</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity>Ciurichas</exemplarCity>
- </zone>
- <zone type="Africa/Abidjan">
- <exemplarCity>Abidžanas</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity>Velykų sala</exemplarCity>
- </zone>
- <zone type="America/Santiago">
- <exemplarCity>Santjagas</exemplarCity>
- </zone>
- <zone type="Asia/Kashgar">
- <exemplarCity>Kashi</exemplarCity>
- </zone>
- <zone type="Asia/Urumqi">
- <exemplarCity>Urumči</exemplarCity>
- </zone>
- <zone type="Asia/Chongqing">
- <exemplarCity>Čongčingas</exemplarCity>
- </zone>
- <zone type="Asia/Harbin">
- <exemplarCity>Harbinas</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity>Kosta Rika</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity>Kalėdų sala</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity>Nikosija</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity>Berlynas</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity>Džibutis</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity>Kopenhaga</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity>Dominika</exemplarCity>
- </zone>
- <zone type="America/Santo_Domingo">
- <exemplarCity>Santo Domingas</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>Galapagai</exemplarCity>
- </zone>
- <zone type="Europe/Tallinn">
- <exemplarCity>Talinas</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity>Kairas</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity>Asmara</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Kanarų salos</exemplarCity>
- </zone>
- <zone type="Africa/Ceuta">
- <exemplarCity>Seuta</exemplarCity>
- </zone>
- <zone type="Europe/Madrid">
- <exemplarCity>Madridas</exemplarCity>
- </zone>
- <zone type="Africa/Addis_Ababa">
- <exemplarCity>Addis Abeba</exemplarCity>
- </zone>
- <zone type="Europe/Helsinki">
- <exemplarCity>Helsinkis</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity>Fidžis</exemplarCity>
- </zone>
- <zone type="Atlantic/Stanley">
- <exemplarCity>Stenlis</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity>Trukas</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity>Ponapė</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity>Farerai</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity>Paryžius</exemplarCity>
- </zone>
- <zone type="Africa/Libreville">
- <exemplarCity>Librevilis</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <exemplarCity>Londonas</exemplarCity>
- </zone>
- <zone type="Asia/Tbilisi">
- <exemplarCity>Tbilisis</exemplarCity>
- </zone>
- <zone type="America/Cayenne">
- <exemplarCity>Kajenas</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity>Gibraltaras</exemplarCity>
- </zone>
- <zone type="America/Thule">
- <exemplarCity>Tūla</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity>Godthabas</exemplarCity>
- </zone>
- <zone type="America/Danmarkshavn">
- <exemplarCity>Danmarkshavn’as</exemplarCity>
- </zone>
- <zone type="Africa/Conakry">
- <exemplarCity>Konakris</exemplarCity>
- </zone>
- <zone type="America/Guadeloupe">
- <exemplarCity>Gvadelupė</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity>Atėnai</exemplarCity>
- </zone>
- <zone type="America/Guatemala">
- <exemplarCity>Gvatemala</exemplarCity>
- </zone>
- <zone type="Pacific/Guam">
- <exemplarCity>Guamas</exemplarCity>
- </zone>
- <zone type="America/Guyana">
- <exemplarCity>Gajana</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity>Honkongas</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity>Budapeštas</exemplarCity>
- </zone>
- <zone type="Asia/Jakarta">
- <exemplarCity>Džakarta</exemplarCity>
- </zone>
- <zone type="Asia/Pontianak">
- <exemplarCity>Pontianakas</exemplarCity>
- </zone>
- <zone type="Asia/Makassar">
- <exemplarCity>Makasaras</exemplarCity>
- </zone>
- <zone type="Asia/Jayapura">
- <exemplarCity>Džajapura</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <exemplarCity>Dublinas</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity>Bagdadas</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity>Teheranas</exemplarCity>
- </zone>
- <zone type="Atlantic/Reykjavik">
- <exemplarCity>Reikjavikas</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity>Roma</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity>Jamaika</exemplarCity>
- </zone>
- <zone type="Asia/Amman">
- <exemplarCity>Amanas</exemplarCity>
- </zone>
- <zone type="Africa/Nairobi">
- <exemplarCity>Nairobis</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity>Biškekas</exemplarCity>
- </zone>
- <zone type="Pacific/Enderbury">
- <exemplarCity>Enderburis</exemplarCity>
- </zone>
- <zone type="Pacific/Tarawa">
- <exemplarCity>Tarava</exemplarCity>
- </zone>
- <zone type="Indian/Comoro">
- <exemplarCity>Komoras</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity>St. Kitsas</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity>Seulas</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity>Kuveitas</exemplarCity>
- </zone>
- <zone type="America/Cayman">
- <exemplarCity>Kaimanas</exemplarCity>
- </zone>
- <zone type="Asia/Aqtau">
- <exemplarCity>Aktau</exemplarCity>
- </zone>
- <zone type="Asia/Oral">
- <exemplarCity>Uralskas</exemplarCity>
- </zone>
- <zone type="Asia/Aqtobe">
- <exemplarCity>Aktiubinskas</exemplarCity>
- </zone>
- <zone type="Asia/Qyzylorda">
- <exemplarCity>Kzyl-Orda</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity>Alma Ata</exemplarCity>
- </zone>
- <zone type="Asia/Vientiane">
- <exemplarCity>Vientianas</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity>Beirutas</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity>St. Lucia</exemplarCity>
- </zone>
- <zone type="Europe/Vaduz">
- <exemplarCity>Vaducas</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity>Kolombo</exemplarCity>
- </zone>
- <zone type="Africa/Monrovia">
- <exemplarCity>Monrovija</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity>Liuksemburgas</exemplarCity>
- </zone>
- <zone type="Europe/Riga">
- <exemplarCity>Ryga</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity>Tripolis</exemplarCity>
- </zone>
- <zone type="Africa/Casablanca">
- <exemplarCity>Kasablanka</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity>Monakas</exemplarCity>
- </zone>
- <zone type="Indian/Antananarivo">
- <exemplarCity>Antananarivas</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity>Rangūnas</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Ulan-Batoras</exemplarCity>
- </zone>
- <zone type="Asia/Choibalsan">
- <exemplarCity>Čoibalsanas</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity>Makao</exemplarCity>
- </zone>
- <zone type="Pacific/Saipan">
- <exemplarCity>Saipanas</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity>Martinika</exemplarCity>
- </zone>
- <zone type="America/Montserrat">
- <exemplarCity>Montseratas</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity>Mauricijus</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity>Maldyvai</exemplarCity>
- </zone>
- <zone type="America/Tijuana">
- <exemplarCity>Tichuana</exemplarCity>
- </zone>
- <zone type="America/Hermosillo">
- <exemplarCity>Hermosiljas</exemplarCity>
- </zone>
- <zone type="America/Mazatlan">
- <exemplarCity>Mazatlanas</exemplarCity>
- </zone>
- <zone type="America/Chihuahua">
- <exemplarCity>Čihuahua</exemplarCity>
- </zone>
- <zone type="America/Monterrey">
- <exemplarCity>Monterėjus</exemplarCity>
- </zone>
- <zone type="America/Mexico_City">
- <exemplarCity>Meksikas</exemplarCity>
- </zone>
- <zone type="America/Cancun">
- <exemplarCity>Kankunas</exemplarCity>
- </zone>
- <zone type="Asia/Kuching">
- <exemplarCity>Kučingas</exemplarCity>
- </zone>
- <zone type="Pacific/Norfolk">
- <exemplarCity>Norfolkas</exemplarCity>
- </zone>
- <zone type="America/Managua">
- <exemplarCity>Managva</exemplarCity>
- </zone>
- <zone type="Europe/Amsterdam">
- <exemplarCity>Amsterdamas</exemplarCity>
- </zone>
- <zone type="Europe/Oslo">
- <exemplarCity>Oslas</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity>Maskatas</exemplarCity>
- </zone>
- <zone type="Pacific/Tahiti">
- <exemplarCity>Taitis</exemplarCity>
- </zone>
- <zone type="Pacific/Marquesas">
- <exemplarCity>Markizo salos</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity>Varšuva</exemplarCity>
- </zone>
- <zone type="Pacific/Pitcairn">
- <exemplarCity>Pitcairno salos</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity>Puerto Rikas</exemplarCity>
- </zone>
- <zone type="Asia/Gaza">
- <exemplarCity>Gazos ruožas</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azorai</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lisabona</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity>Asunsjonas</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity>Kataras</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity>Reunionas</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity>Bukareštas</exemplarCity>
- </zone>
- <zone type="Europe/Kaliningrad">
- <exemplarCity>Kaliningradas</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Maskva</exemplarCity>
- </zone>
- <zone type="Europe/Volgograd">
- <exemplarCity>Volgogradas</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Jekaterinburgas</exemplarCity>
- </zone>
- <zone type="Asia/Omsk">
- <exemplarCity>Omskas</exemplarCity>
- </zone>
- <zone type="Asia/Novosibirsk">
- <exemplarCity>Novosibirskas</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>Krasnojarskas</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>Irkutskas</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>Jakutskas</exemplarCity>
- </zone>
- <zone type="Asia/Vladivostok">
- <exemplarCity>Vladivostokas</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>Sachalinas</exemplarCity>
- </zone>
- <zone type="Asia/Magadan">
- <exemplarCity>Magadanas</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>Kamčiatka</exemplarCity>
- </zone>
- <zone type="Asia/Anadyr">
- <exemplarCity>Anadyrė</exemplarCity>
- </zone>
- <zone type="Asia/Riyadh">
- <exemplarCity>Rijadas</exemplarCity>
- </zone>
- <zone type="Pacific/Guadalcanal">
- <exemplarCity>Gvadalkanalas</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity>Chartumas</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity>Stokholmas</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity>Singapūras</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity>Šv. Helena</exemplarCity>
- </zone>
- <zone type="Africa/Freetown">
- <exemplarCity>Frytaunas</exemplarCity>
- </zone>
- <zone type="Africa/Dakar">
- <exemplarCity>Dakaras</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity>Mogadišas</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity>San Tomė</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity>Salvadoras</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity>Damaskas</exemplarCity>
- </zone>
- <zone type="America/Grand_Turk">
- <exemplarCity>Grand Terkas</exemplarCity>
- </zone>
- <zone type="Africa/Ndjamena">
- <exemplarCity>Ndžamena</exemplarCity>
- </zone>
- <zone type="Asia/Bangkok">
- <exemplarCity>Bankokas</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity>Dušanbė</exemplarCity>
- </zone>
- <zone type="Asia/Dili">
- <exemplarCity>Dilis</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity>Ašchabadas</exemplarCity>
- </zone>
- <zone type="Africa/Tunis">
- <exemplarCity>Tunisas</exemplarCity>
- </zone>
- <zone type="Europe/Istanbul">
- <exemplarCity>Stambulas</exemplarCity>
- </zone>
- <zone type="America/Port_of_Spain">
- <exemplarCity>Port of Speinas</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>Užhorodas</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>Kijevas</exemplarCity>
- </zone>
- <zone type="Europe/Simferopol">
- <exemplarCity>Simferopolis</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>Zaporožė</exemplarCity>
- </zone>
- <zone type="Pacific/Midway">
- <exemplarCity>Jungtinių Valstijų mažosios aplinkinės salos (Midway</exemplarCity>
- </zone>
- <zone type="Pacific/Johnston">
- <exemplarCity>Džonstonas</exemplarCity>
- </zone>
- <zone type="Pacific/Wake">
- <exemplarCity>Jungtinių Valstijų mažosios aplinkinės salos (Klivateris)</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity>Ankoridžas</exemplarCity>
- </zone>
- <zone type="America/Yakutat">
- <exemplarCity>Jakutat</exemplarCity>
- </zone>
- <zone type="America/Juneau">
- <exemplarCity>Džūnas</exemplarCity>
- </zone>
- <zone type="America/Los_Angeles">
- <exemplarCity>Los Andželas</exemplarCity>
- </zone>
- <zone type="America/Boise">
- <exemplarCity>Boisė</exemplarCity>
- </zone>
- <zone type="America/Phoenix">
- <exemplarCity>Fyniksas</exemplarCity>
- </zone>
- <zone type="America/Denver">
- <exemplarCity>Denveris</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity>Naujasis Salemas, Šiaurės Dakota</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity>Jungtinės Valstijos (Centras, Šiaurės Dakota)</exemplarCity>
- </zone>
- <zone type="America/Chicago">
- <exemplarCity>Čikaga</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity>Vincenas, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity>Peterburgas</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity>Noksas, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity>Vinamakas, Indiana</exemplarCity>
- </zone>
- <zone type="America/Louisville">
- <exemplarCity>Luizvilis</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity>Monticelas, Kentukis</exemplarCity>
- </zone>
- <zone type="America/Detroit">
- <exemplarCity>Detroitas</exemplarCity>
- </zone>
- <zone type="America/New_York">
- <exemplarCity>Niujorkas</exemplarCity>
- </zone>
- <zone type="America/Montevideo">
- <exemplarCity>Montevidëjas</exemplarCity>
- </zone>
- <zone type="Asia/Samarkand">
- <exemplarCity>Samarkandas</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>Taškentas</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity>Sant Vincentė</exemplarCity>
- </zone>
- <zone type="America/Caracas">
- <exemplarCity>Karakasas</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity>St. Thomas</exemplarCity>
- </zone>
- <zone type="Pacific/Efate">
- <exemplarCity>Efatas</exemplarCity>
- </zone>
- <zone type="Pacific/Apia">
- <exemplarCity>Apija</exemplarCity>
- </zone>
- <zone type="Asia/Aden">
- <exemplarCity>Adenas</exemplarCity>
- </zone>
- <zone type="Indian/Mayotte">
- <exemplarCity>Majotas</exemplarCity>
- </zone>
- <zone type="Africa/Johannesburg">
- <exemplarCity>Johanesburgas</exemplarCity>
- </zone>
- <metazone type="Africa_Central">
- <long>
- <standard>Centrinės Afrikos laikas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Rytų Afrikos laikas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <generic>Pietų Afrikos laikas</generic>
- <standard>Pietų Afrikos standartinis laikas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <standard>Vakarų Afrikos laikas</standard>
- <daylight>Vakarų Afrikos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic>Aliaskos laikas</generic>
- <standard>Aliaskos standartinis laikas</standard>
- <daylight>Aliaskos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Alaska_Hawaii">
- <long>
- <generic>Aliaskos-Havajų laikas</generic>
- <standard>Aliaskos-Havajų standartinis laikas</standard>
- <daylight>Aliaskos-Havajų vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <standard>Amazonės laikas</standard>
- <daylight>Amazonės vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic>Centro laikas</generic>
- <standard>Centro standartinis laikas</standard>
- <daylight>Centro vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic>Rytų laikas</generic>
- <standard>Rytų standartinis laikas</standard>
- <daylight>Rytų vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic>Ramiojo vandenyno laikas</generic>
- <standard>Ramiojo vandenyno standartinis laikas</standard>
- <daylight>Ramiojo vandenyno vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Aqtau">
- <short>
- <standard>AQTT (Aktau)</standard>
- <daylight>AQTST (Aktau)</daylight>
- </short>
- </metazone>
- <metazone type="Aqtobe">
- <short>
- <standard>AQTT (Aktobė)</standard>
- <daylight>AQTST (Aktobė)</daylight>
- </short>
- </metazone>
- <metazone type="Argentina">
- <long>
- <standard>Argentinos laikas</standard>
- <daylight>Argentinos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <standard>Vakarų Argentinos laikas</standard>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Atlanto laikas</generic>
- <standard>Atlanto standartinis laikas</standard>
- <daylight>Atlanto vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Bering">
- <long>
- <generic>Beringo laikas</generic>
- <standard>Beringo standartinis laikas</standard>
- <daylight>Beringo vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard>Bolivijos laikas</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <standard>Brazilijos laikas</standard>
- <daylight>Brazilijos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <standard>Čilės laikas</standard>
- <daylight>Čilės vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <standard>Kolumbijos laikas</standard>
- <daylight>Kolumbijos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>Kubos laikas</generic>
- <standard>Kubos standartinis laikas</standard>
- <daylight>Kubos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Dutch_Guiana">
- <long>
- <standard>Olandų Gajanos laikas</standard>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard>Ekvadoro laikas</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <standard>Vidurio Europos laikas</standard>
- <daylight>Vidurio Europos vasaros laikas</daylight>
- </long>
- <short>
- <standard>CET</standard>
- <daylight>CEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <standard>Rytų Europos laikas</standard>
- <daylight>Rytų Europos vasaros laikas</daylight>
- </long>
- <short>
- <standard>EET</standard>
- <daylight>EEST</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Western">
- <short>
- <standard>WET</standard>
- <daylight>WEST</daylight>
- </short>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard>Prancūzų Gajanos laikas</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <short>
- <standard>GMT</standard>
- </short>
- </metazone>
- <metazone type="Greenland_Central">
- <long>
- <standard>Grenlandijos centro laikas</standard>
- <daylight>Grenlandijos centro vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <standard>Grenlandijos rytų laikas</standard>
- <daylight>Grenlandijos rytų vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <standard>Grenlandijos vakarų laikas</standard>
- <daylight>Grenlandijos vakarų vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard>Gajanos laikas</standard>
- </long>
- </metazone>
- <metazone type="Kuybyshev">
- <long>
- <standard>Kuibyševo laikas</standard>
- <daylight>Kuibyševo vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Maskvos laikas</generic>
- <standard>Maskvos standartinis laikas</standard>
- <daylight>Maskvos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic>Niufaundlendo laikas</generic>
- <standard>Niufaundlendo standartinis laikas</standard>
- <daylight>Niufaundlendo vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <standard>Paragvajaus laikas</standard>
- <daylight>Paragvajaus vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <standard>Peru laikas</standard>
- <daylight>Peru vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <standard>Samaros laikas</standard>
- <daylight>Samaros vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Samarkand">
- <short>
- <standard>SAMT (Samarkandas)</standard>
- <daylight>SAMST (Samarkandas)</daylight>
- </short>
- </metazone>
- <metazone type="Turkey">
- <long>
- <standard>Turkijos laikas</standard>
- <daylight>Turkijos vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <standard>Urugvajaus laikas</standard>
- <daylight>Urugvajaus vasaros laikas</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard>Venesuelos laikas</standard>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <standard>Volgogrado laikas</standard>
- <daylight>Volgogrado vasaros laikas</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols>
- <decimal>,</decimal>
- <group>.</group>
- <list>;</list>
- <percentSign>%</percentSign>
- <nativeZeroDigit>0</nativeZeroDigit>
- <patternDigit>#</patternDigit>
- <plusSign>+</plusSign>
- <minusSign>−</minusSign>
- <exponential>×10^</exponential>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>¤¤¤</nan>
- </symbols>
- <decimalFormats>
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats>
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats>
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0%</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats>
- <currencyFormatLength>
- <currencyFormat>
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="few">{0} {1}</unitPattern>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>Andoros peseta</displayName>
- <displayName count="few">Andoros pesetos</displayName>
- <displayName count="one">Andoros peseta</displayName>
- <displayName count="other">Andoros pesetos</displayName>
- </currency>
- <currency type="AED">
- <displayName>JAE dirhamas</displayName>
- </currency>
- <currency type="AFA">
- <displayName>Afganis (1927-2002)</displayName>
- <displayName count="few">Afganiai (1927-2002)</displayName>
- <displayName count="one">Afganis (1927-2002)</displayName>
- <displayName count="other">Afganiai (1927-2002)</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Afganis</displayName>
- <displayName count="few">Afganiai</displayName>
- <displayName count="one">Afganis</displayName>
- <displayName count="other">Afganiai</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Albanijos lekas</displayName>
- <displayName count="few">Albanijos lekai</displayName>
- <displayName count="one">Albanijos lekas</displayName>
- <displayName count="other">Albanijos lekai</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Armėnijos dramas</displayName>
- <displayName count="few">Armėnijos dramai</displayName>
- <displayName count="one">Armėnijos dramas</displayName>
- <displayName count="other">Armėnijos dramai</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Nyderlandų Antilų guldenas</displayName>
- <displayName count="few">Nyderlandų Antilų guldenas</displayName>
- <displayName count="other">Nyderlandų Antilų guldenai</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Angolos kvanza</displayName>
- <displayName count="few">Angolos kvanzos</displayName>
- <displayName count="one">Angolos kvanza</displayName>
- <displayName count="other">Angolos kvanzai</displayName>
- </currency>
- <currency type="AOK">
- <displayName>Angolos kvanza (1977-1990)</displayName>
- <displayName count="few">Angolos kvanzos (1977-1990)</displayName>
- <displayName count="one">Angolos kvanza (1977-1990)</displayName>
- <displayName count="other">Angolos kvanzai (1977-1990)</displayName>
- </currency>
- <currency type="AON">
- <displayName>Angolos naujoji kvanza</displayName>
- <displayName count="few">Angolos naujosios kvanzos</displayName>
- <displayName count="one">Angolos naujoji kvanza</displayName>
- <displayName count="other">Angolos naujosios kvanzos</displayName>
- </currency>
- <currency type="ARP">
- <displayName>Argentinos pesas (1983-1985)</displayName>
- <displayName count="few">Argentinos pesai (1983-1985)</displayName>
- <displayName count="one">Argentinos pesas (1983-1985)</displayName>
- <displayName count="other">Argentinos pesai (1983-1985)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Argentinos pesas</displayName>
- <displayName count="one">Argentinos pesas</displayName>
- <displayName count="other">Argentinos pesai</displayName>
- </currency>
- <currency type="ATS">
- <displayName>Austrijos šilingas</displayName>
- <displayName count="few">Austrijos šilingai</displayName>
- <displayName count="one">Austrijos šilingas</displayName>
- <displayName count="other">Austrijos šilingai</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Australijos doleris</displayName>
- <displayName count="one">Australijos doleris</displayName>
- <displayName count="other">Australijos doleriai</displayName>
- </currency>
- <currency type="AWG">
- <displayName>Arubos guldenas</displayName>
- <displayName count="few">Arubos guldenai</displayName>
- <displayName count="one">Arubos guldenas</displayName>
- <displayName count="other">Arubos guldenai</displayName>
- </currency>
- <currency type="AZM">
- <displayName>Azerbaidžano manatas (1993-2006)</displayName>
- <displayName count="few">Azerbaidžano manatai (1993-2006)</displayName>
- <displayName count="one">Azerbaidžano manatas (1993-2006)</displayName>
- <displayName count="other">Azerbaidžano manatai (1993-2006)</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Azerbaidžano manatas</displayName>
- <displayName count="few">Azerbaidžano manatai</displayName>
- <displayName count="one">Azerbaidžano manatas</displayName>
- <displayName count="other">Azerbaidžano manatai</displayName>
- </currency>
- <currency type="BAD">
- <displayName>Bosnijos ir Hercegovinos dinaras</displayName>
- <displayName count="few">Bosnijos ir Hercegovinos dinarai</displayName>
- <displayName count="one">Bosnijos ir Hercegovinos dinaras</displayName>
- <displayName count="other">Bosnijos ir Hercegovinos dinarai</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Bosnijos ir Hercegovinos konvertuojamoji markė</displayName>
- <displayName count="few">Bosnijos ir Hercegovinos konvertuojamosios markės</displayName>
- <displayName count="one">Bosnijos ir Hercegovinos konvertuojamoji markė</displayName>
- <displayName count="other">Bosnijos ir Hercegovinos konvertuojamosios markės</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Barbadoso doleris</displayName>
- <displayName count="few">Barbadoso doleriai</displayName>
- <displayName count="one">Barbadoso doleris</displayName>
- <displayName count="other">Barbadoso doleriai</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Bangladešo taka</displayName>
- <displayName count="few">Bangladešo takos</displayName>
- <displayName count="one">Bangladešo taka</displayName>
- <displayName count="other">Bangladešo takos</displayName>
- </currency>
- <currency type="BEC">
- <displayName>Belgijos frankas (konvertuojamas)</displayName>
- <displayName count="few">Belgijos frankai (konvertuojami)</displayName>
- <displayName count="one">Belgijos frankas (konvertuojamas)</displayName>
- <displayName count="other">Belgijos frankai (konvertuojami)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>Belgijos frankas</displayName>
- <displayName count="few">Belgijos frankai</displayName>
- <displayName count="one">Belgijos frankas</displayName>
- <displayName count="other">Belgijos frankai</displayName>
- </currency>
- <currency type="BEL">
- <displayName>Belgijos frankas (finansinis)</displayName>
- <displayName count="few">Belgijos frankai (finansiniai)</displayName>
- <displayName count="one">Belgijos frankas (finansinis)</displayName>
- <displayName count="other">Belgijos frankai (finansiniai)</displayName>
- </currency>
- <currency type="BGL">
- <displayName>Bulgarijos levas (1962-1999)</displayName>
- <displayName count="few">Bulgarijos levai</displayName>
- <displayName count="one">Bulgarijos levas (1962-1999)</displayName>
- <displayName count="other">Bulgarijos levai</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Bulgarijos levas</displayName>
- <displayName count="one">Bulgarijos naujasis levas</displayName>
- <displayName count="other">Bulgarijos naujasis levai</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Bahreino dinaras</displayName>
- <displayName count="few">Bahreino dinarai</displayName>
- <displayName count="one">Bahreino dinaras</displayName>
- <displayName count="other">Bahreino dinarai</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Burundžio frankas</displayName>
- <displayName count="few">Burundžio frankai</displayName>
- <displayName count="one">Burundžio frankas</displayName>
- <displayName count="other">Burundžio frankai</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Bermudos doleris</displayName>
- <displayName count="few">Bermudos doleriai</displayName>
- <displayName count="one">Bermudos doleris</displayName>
- <displayName count="other">Bermudos doleriai</displayName>
- </currency>
- <currency type="BND">
- <displayName>Brunėjaus doleris</displayName>
- <displayName count="one">Brunėjaus doleris</displayName>
- <displayName count="other">Brunėjaus doleriai</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Bolivijos bolivijanas</displayName>
- <displayName count="one">Bolivijos bolivijanas</displayName>
- <displayName count="other">Bolivijos bolivijanai</displayName>
- </currency>
- <currency type="BOP">
- <displayName>Bolivijos pesas</displayName>
- <displayName count="few">Bolivijos pesai</displayName>
- <displayName count="one">Bolivijos pesas</displayName>
- <displayName count="other">Bolivijos pesai</displayName>
- </currency>
- <currency type="BOV">
- <displayName>Bolivijos mvdol</displayName>
- <displayName count="one">Bolivijos mvdol</displayName>
- <displayName count="other">Bolivijos mvdol</displayName>
- </currency>
- <currency type="BRB">
- <displayName>Brazilijos naujasis kruzeiras</displayName>
- <displayName count="few">Brazilijos naujieji kruzeirai</displayName>
- <displayName count="one">Brazilijos naujasis kruzeiras</displayName>
- <displayName count="other">Brazilijos naujieji kruzeirai</displayName>
- </currency>
- <currency type="BRC">
- <displayName>Brazilijos kruzadas</displayName>
- <displayName count="few">Brazilijos kruzadai</displayName>
- <displayName count="one">Brazilijos kruzadas</displayName>
- <displayName count="other">Brazilijos kruzadai</displayName>
- </currency>
- <currency type="BRE">
- <displayName>Brazilijos kruzeiras (1990-1993)</displayName>
- <displayName count="few">Brazilijos kruzeirai (1990-1993)</displayName>
- <displayName count="one">Brazilijos kruzeiras (1990-1993)</displayName>
- <displayName count="other">Brazilijos kruzeirai (1990-1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Brazilijos realas</displayName>
- <displayName count="one">Brazilijos realas</displayName>
- <displayName count="other">Brazilijos realai</displayName>
- </currency>
- <currency type="BRN">
- <displayName>Brazilijos naujasis kruzadas</displayName>
- <displayName count="few">Brazilijos naujieji kruzadai</displayName>
- <displayName count="one">Brazilijos naujasis kruzadas</displayName>
- <displayName count="other">Brazilijos naujieji kruzadai</displayName>
- </currency>
- <currency type="BRR">
- <displayName>Brazilijos kruzeiras</displayName>
- <displayName count="few">Brazilijos kruzeirai</displayName>
- <displayName count="one">Brazilijos kruzeiras</displayName>
- <displayName count="other">Brazilijos kruzeirai</displayName>
- </currency>
- <currency type="BSD">
- <displayName>Bahamų doleris</displayName>
- <displayName count="few">Bahamų doleriai</displayName>
- <displayName count="one">Bahamų doleris</displayName>
- <displayName count="other">Bahamų doleriai</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Butano ngultrumas</displayName>
- <displayName count="few">Butano ngultrumai</displayName>
- <displayName count="one">Butano ngultrumas</displayName>
- <displayName count="other">Butano ngultrumai</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Botsvanos pula</displayName>
- <displayName count="few">Botsvanos pulos</displayName>
- <displayName count="one">Botsvanos pula</displayName>
- <displayName count="other">Botsvanos pulos</displayName>
- </currency>
- <currency type="BYB">
- <displayName>Baltarusijos naujasis rublis</displayName>
- <displayName count="one">Baltarusijos naujasis rublis</displayName>
- <displayName count="other">Baltarusijos naujieji rubliai</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Baltarusijos rublis</displayName>
- <displayName count="one">Baltarusijos rublis</displayName>
- <displayName count="other">Baltarusijos rubliai</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Belizo doleris</displayName>
- <displayName count="one">Belizo doleris</displayName>
- <displayName count="other">Belizo doleriai</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Kanados doleris</displayName>
- <displayName count="one">Kanados doleris</displayName>
- <displayName count="other">Kanados doleriai</displayName>
- </currency>
- <currency type="CDF">
- <displayName>Kongo frankas</displayName>
- <displayName count="one">Kongo frankas</displayName>
- <displayName count="other">Kongo frankai</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Šveicarijos frankas</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Čilės pesas</displayName>
- <displayName count="one">Čilės pesas</displayName>
- <displayName count="other">Čilės pesai</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Ženminbi juanis</displayName>
- <displayName count="one">Kinijos juanis</displayName>
- <displayName count="other">Kinijos juaniai</displayName>
- </currency>
- <currency type="COP">
- <displayName>Kolumbijos pesas</displayName>
- <displayName count="one">Kolumbijos pesas</displayName>
- <displayName count="other">Kolumbijos pesai</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Kosta Rikos kolonas</displayName>
- <displayName count="one">Kosta Rikos kolonas</displayName>
- <displayName count="other">Kosta Rikos kolonai</displayName>
- </currency>
- <currency type="CSD">
- <displayName>Senasis Serbijos dinaras</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Kubos pesas</displayName>
- </currency>
- <currency type="CYP">
- <displayName>Kipro svaras</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Čekijos krona</displayName>
- </currency>
- <currency type="DDM">
- <displayName>Rytų Vokietijos ostmarkė</displayName>
- </currency>
- <currency type="DEM">
- <displayName>Vokietijos markė</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Džibučio frankas</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Danijos krona</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Dominikos pesas</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Alžyro dinaras</displayName>
- <displayName count="one">Alžyro dinaras</displayName>
- <displayName count="other">Alžyro dinarai</displayName>
- </currency>
- <currency type="ECS">
- <displayName>Ekvadoro sukrė</displayName>
- </currency>
- <currency type="ECV">
- <displayName>Ekvadoro constante (UVC)</displayName>
- </currency>
- <currency type="EEK">
- <displayName>Estijos krona</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Egipto svaras</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Eritrėjos nakfa</displayName>
- </currency>
- <currency type="ESP">
- <displayName>Ispanijos peseta</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Etiopijos biras</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Euras</displayName>
- </currency>
- <currency type="FIM">
- <displayName>Suomijos markė</displayName>
- </currency>
- <currency type="FJD">
- <displayName>Fidžio doleris</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Folklando salų svaras</displayName>
- </currency>
- <currency type="FRF">
- <displayName>Prancūzijos frankas</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Svaras sterlingų</displayName>
- <displayName count="one">Didžiosios Britanijos svaras sterlingų</displayName>
- <displayName count="other">Didžiosios Britanijos svarai sterlingų</displayName>
- </currency>
- <currency type="GEL">
- <displayName>Gruzijos laris</displayName>
- </currency>
- <currency type="GHC">
- <displayName>Ganos sedis (1979-2007)</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Ganos sedis</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Gibraltaro svaras</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Gambijos dalasis</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Gvinėjos frankas</displayName>
- </currency>
- <currency type="GRD">
- <displayName>Graikijos drachma</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Gvatemalos kecalis</displayName>
- </currency>
- <currency type="GWE">
- <displayName>Portugalų Gvinėjos eskudas</displayName>
- </currency>
- <currency type="GWP">
- <displayName>Gvinėjos-Bisau pesas</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Gajanos doleris</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Honkongo doleris</displayName>
- </currency>
- <currency type="HNL">
- <displayName>Hondūro lempira</displayName>
- </currency>
- <currency type="HRD">
- <displayName>Kroatijos dinaras</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Kroatijos kuna</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Haičio gurdas</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Vengrijos forintas</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Indonezijos rupija</displayName>
- </currency>
- <currency type="IEP">
- <displayName>Airijos svaras</displayName>
- </currency>
- <currency type="ILP">
- <displayName>Izraelio svaras</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Izraelio šekelis</displayName>
- </currency>
- <currency type="INR">
- <displayName>Indijos rupija</displayName>
- </currency>
- <currency type="IQD">
- <displayName>Irako dinaras</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Irano rialas</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Islandijos krona</displayName>
- </currency>
- <currency type="ITL">
- <displayName>Italijos lira</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Jamaikos doleris</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Jordanijos dinaras</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Jena</displayName>
- </currency>
- <currency type="KES">
- <displayName>Kenijos šilingas</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Kirgizijos somas</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Komoro frankas</displayName>
- <displayName count="one">Komoro frankas</displayName>
- <displayName count="other">Komoro frankai</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Šiaurės Korėjos vonas</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Pietų Korėjos vonas</displayName>
- </currency>
- <currency type="KWD">
- <displayName>Kuveito dinaras</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Kaimanų salų doleris</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Kazachstano tengė</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Laoso kipas</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Libano svaras</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Šri Lankos rupija</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Liberijos doleris</displayName>
- </currency>
- <currency type="LSL">
- <displayName>Lesoto lotis</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Litas</displayName>
- </currency>
- <currency type="LTT">
- <displayName>Lietuvos talonas</displayName>
- </currency>
- <currency type="LUC">
- <displayName>Liuksemburgo konvertuojamas frankas</displayName>
- </currency>
- <currency type="LUF">
- <displayName>Liuksemburgo frankas</displayName>
- </currency>
- <currency type="LUL">
- <displayName>Liuksemburgo finansinis frankas</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Latvijos latas</displayName>
- </currency>
- <currency type="LVR">
- <displayName>Latvijos rublis</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Libijos dinaras</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Maroko dirhamas</displayName>
- </currency>
- <currency type="MAF">
- <displayName>Maroko frankas</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Moldovos lėja</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Madagaskaro ariaris</displayName>
- </currency>
- <currency type="MGF">
- <displayName>Madagaskaro frankas</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Makedonijos denaras</displayName>
- </currency>
- <currency type="MLF">
- <displayName>Malio frankas</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Mianmaro kijatas</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Mongolijos tugrikas</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Makao pataka</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Mauritanijos ugija</displayName>
- </currency>
- <currency type="MTL">
- <displayName>Maltos lira</displayName>
- </currency>
- <currency type="MTP">
- <displayName>Maltos svaras</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Mauricijaus rupija</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Maldyvų salų rufija</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Malavio kvača</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Meksikos pesas</displayName>
- </currency>
- <currency type="MXP">
- <displayName>Meksikos sidabrinis pesas (1861-1992)</displayName>
- </currency>
- <currency type="MXV">
- <displayName>Meksikos United de Inversion (UDI)</displayName>
- </currency>
- <currency type="MYR">
- <displayName>Malaizijos ringitas</displayName>
- </currency>
- <currency type="MZE">
- <displayName>Mozambiko eskudas</displayName>
- </currency>
- <currency type="MZM">
- <displayName>Senasis Mozambiko metikalis</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Mozambiko metikalis</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Namibijos doleris</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Nigerijos naira</displayName>
- </currency>
- <currency type="NIC">
- <displayName>Nikaragvos kardoba</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Nikaragvos kardoba oras</displayName>
- </currency>
- <currency type="NLG">
- <displayName>Nyderlandų guldenas</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Norvegijos krona</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Nepalo rupija</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Naujosios Zelandijos doleris</displayName>
- </currency>
- <currency type="OMR">
- <displayName>Omano rialas</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Panamos balboja</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Peru naujasis solis</displayName>
- </currency>
- <currency type="PES">
- <displayName>Peru solis</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Papua Naujosios Gvinėjos kina</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Filipinų pesas</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Pakistano rupija</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Lenkijos zlotas</displayName>
- </currency>
- <currency type="PLZ">
- <displayName>Lenkijos zlotas (1950-1995)</displayName>
- </currency>
- <currency type="PTE">
- <displayName>Portugalijos eskudas</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Paragvajaus guaranis</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Kataro rialas</displayName>
- </currency>
- <currency type="RHD">
- <displayName>Rodezijos doleris</displayName>
- </currency>
- <currency type="ROL">
- <displayName>Senoji Rumunijos lėja</displayName>
- </currency>
- <currency type="RON">
- <displayName>Naujoji Rumunijos lėja</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Serbijos dinaras</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Rusijos rublis</displayName>
- </currency>
- <currency type="RUR">
- <displayName>Rusijos rublis (1991-1998)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Ruandos frankas</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Saudo Arabijos rialas</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Saliamono salų doleris</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Seišelių salų rupija</displayName>
- </currency>
- <currency type="SDD">
- <displayName>Senasis Sudano dinaras</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Sudano svaras</displayName>
- </currency>
- <currency type="SDP">
- <displayName>Senasis Sudano svaras</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Švedijos krona</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Singapūro doleris</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Šv. Elenos salų svaras</displayName>
- </currency>
- <currency type="SIT">
- <displayName>Slovėnijos tolaras</displayName>
- </currency>
- <currency type="SKK">
- <displayName>Slovakijos krona</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Siera Leonės leonė</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Somalio šilingas</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Surimano doleris</displayName>
- </currency>
- <currency type="SRG">
- <displayName>Surimano guldenas</displayName>
- </currency>
- <currency type="STD">
- <displayName>Sao Tomės ir Principės dobra</displayName>
- </currency>
- <currency type="SUR">
- <displayName>Sovietų Sąjungos rublis</displayName>
- </currency>
- <currency type="SVC">
- <displayName>Salvadoro kolonas</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Sirijos svaras</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Svazilendo lilangenis</displayName>
- </currency>
- <currency type="THB">
- <displayName>Tailando batas</displayName>
- </currency>
- <currency type="TJR">
- <displayName>Tadžikistano rublis</displayName>
- </currency>
- <currency type="TJS">
- <displayName>Tadžikistano somonis</displayName>
- </currency>
- <currency type="TMM">
- <displayName>Turkmėnistano manatas</displayName>
- </currency>
- <currency type="TND">
- <displayName>Tuniso dinaras</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Tongo paanga</displayName>
- </currency>
- <currency type="TPE">
- <displayName>Timoro eskudas</displayName>
- </currency>
- <currency type="TRL">
- <displayName>Turkijos lira</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Naujoji Turkijos lira</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Trinidado ir Tobago doleris</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Naujasis Taivano doleris</displayName>
- </currency>
- <currency type="TZS">
- <displayName>Tanzanijos šilingas</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Ukrainos grivina</displayName>
- </currency>
- <currency type="UAK">
- <displayName>Ukrainos karbovanecas</displayName>
- </currency>
- <currency type="UGS">
- <displayName>Ugandos šilingas (1966-1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Ugandos šilingas</displayName>
- </currency>
- <currency type="USD">
- <displayName>JAV doleris</displayName>
- </currency>
- <currency type="USN">
- <displayName>JAV doleris (kitos dienos)</displayName>
- </currency>
- <currency type="USS">
- <displayName>JAV doleris (šios dienos)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>Urugvajaus pesas (1975-1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>Urugvajaus pesas</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Uzbekistano sumas</displayName>
- </currency>
- <currency type="VEB">
- <displayName>Venesuelos bolivaras</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Stiprusis Venesuelos bolivaras</displayName>
- </currency>
- <currency type="VND">
- <displayName>Vietnamo dongas</displayName>
- </currency>
- <currency type="WST">
- <displayName>Vakarų Samoa tala</displayName>
- </currency>
- <currency type="XAF">
- <displayName>CFA BEAC frankas</displayName>
- <displayName count="one">CFA BEAC frankas</displayName>
- <displayName count="other">CFA BEAC frankai</displayName>
- </currency>
- <currency type="XAG">
- <displayName>Sidabras</displayName>
- </currency>
- <currency type="XAU">
- <displayName>Auksas</displayName>
- </currency>
- <currency type="XBA">
- <displayName>Europos suvestinės vienetas</displayName>
- </currency>
- <currency type="XBB">
- <displayName>Europos piniginis vienetas</displayName>
- </currency>
- <currency type="XBC">
- <displayName>Europos valiutos/apskaitos vienetas (XBC)</displayName>
- </currency>
- <currency type="XBD">
- <displayName>Europos valiutos/apskaitos vienetas (XBD)</displayName>
- </currency>
- <currency type="XCD">
- <displayName>Rytų Karibų doleris</displayName>
- </currency>
- <currency type="XDR">
- <displayName>SDR Tarptautinis valiutos fondas</displayName>
- </currency>
- <currency type="XEU">
- <displayName>Europos piniginis vienetas (1993-1999)</displayName>
- </currency>
- <currency type="XFO">
- <displayName>Aukso frankas</displayName>
- </currency>
- <currency type="XFU">
- <displayName>Uic -frankas</displayName>
- </currency>
- <currency type="XOF">
- <displayName>CFA BCEAO frankas</displayName>
- <displayName count="one">CFA BCEAO frankas</displayName>
- <displayName count="other">CFA BCEAO frankai</displayName>
- </currency>
- <currency type="XPD">
- <displayName>Paladis</displayName>
- </currency>
- <currency type="XPF">
- <displayName>CFP frankas</displayName>
- <displayName count="one">CFP frankas</displayName>
- <displayName count="other">CFP frankai</displayName>
- </currency>
- <currency type="XPT">
- <displayName>Platina</displayName>
- </currency>
- <currency type="XRE">
- <displayName>RINET fondai</displayName>
- </currency>
- <currency type="XTS">
- <displayName>Tikrinamas valiutos kodas</displayName>
- </currency>
- <currency type="XXX">
- <displayName>Nežinoma arba neteisinga valiuta</displayName>
- </currency>
- <currency type="YDD">
- <displayName>Jemeno dinaras</displayName>
- </currency>
- <currency type="YER">
- <displayName>Jemeno rialas</displayName>
- </currency>
- <currency type="YUM">
- <displayName>Jugoslavijos naujasis dinaras</displayName>
- </currency>
- <currency type="YUN">
- <displayName>Jugoslavijos konvertuojamas dinaras</displayName>
- </currency>
- <currency type="ZAL">
- <displayName>Pietų Afrikos finansinis randas</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Pietų Afrikos randas</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Zambijos kvača</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>Zairo naujasis zairas</displayName>
- </currency>
- <currency type="ZRZ">
- <displayName>Zairo zairas</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>Zimbabvės doleris</displayName>
- </currency>
- </currencies>
- </numbers>
- <units>
- <unit type="day">
- <unitPattern count="few">{0} dienos</unitPattern>
- <unitPattern count="one">{0} diena</unitPattern>
- <unitPattern count="other">{0} dienų</unitPattern>
- </unit>
- <unit type="hour">
- <unitPattern count="few">{0} valandos</unitPattern>
- <unitPattern count="one">{0} valanda</unitPattern>
- <unitPattern count="other">{0} valandų</unitPattern>
- </unit>
- <unit type="minute">
- <unitPattern count="few">{0} minutės</unitPattern>
- <unitPattern count="one">{0} minutė</unitPattern>
- <unitPattern count="other">{0} minučių</unitPattern>
- </unit>
- <unit type="month">
- <unitPattern count="few">{0} mėnesiai</unitPattern>
- <unitPattern count="one">{0} mėnuo</unitPattern>
- <unitPattern count="other">{0} mėnesių</unitPattern>
- </unit>
- <unit type="second">
- <unitPattern count="few">{0} sekundės</unitPattern>
- <unitPattern count="one">{0} sekundė</unitPattern>
- <unitPattern count="other">{0} sekundžių</unitPattern>
- </unit>
- <unit type="week">
- <unitPattern count="few">{0} savaitės</unitPattern>
- <unitPattern count="one">{0} savaitė</unitPattern>
- <unitPattern count="other">{0} savaičių</unitPattern>
- </unit>
- <unit type="year">
- <unitPattern count="few">{0} metai</unitPattern>
- <unitPattern count="one">{0} metai</unitPattern>
- <unitPattern count="other">{0} metų</unitPattern>
- </unit>
- </units>
- <posix>
- <messages>
- <yesstr>taip:t</yesstr>
- <nostr>ne:n</nostr>
- </messages>
- </posix>
- </ldml>
|