123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
- <!-- Copyright © 1991-2013 Unicode, Inc.
- CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
- For terms of use, see http://www.unicode.org/copyright.html
- -->
- <ldml>
- <identity>
- <version number="$Revision: 9852 $"/>
- <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
- <language type="sk"/>
- </identity>
- <localeDisplayNames>
- <localeDisplayPattern>
- <localePattern>{0} ({1})</localePattern>
- <localeSeparator>{0}, {1}</localeSeparator>
- <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
- </localeDisplayPattern>
- <languages>
- <language type="aa">afarčina</language>
- <language type="ab">abcházština</language>
- <language type="ace" draft="contributed">acehčina</language>
- <language type="ach">ačoli</language>
- <language type="ada">adangme</language>
- <language type="ady">adygčina</language>
- <language type="ae">avestčina</language>
- <language type="af">afrikánčina</language>
- <language type="afh">afrihili</language>
- <language type="agq" draft="contributed">aghem</language>
- <language type="ain">ainčina</language>
- <language type="ak">akančina</language>
- <language type="akk">akkadčina</language>
- <language type="ale">aleutčina</language>
- <language type="alt" draft="contributed">južná altajčina</language>
- <language type="am">amharčina</language>
- <language type="an">aragónčina</language>
- <language type="ang" draft="contributed">stará angličtina</language>
- <language type="anp">angika</language>
- <language type="ar">arabčina</language>
- <language type="ar_001" draft="contributed">moderná štandardná arabčina</language>
- <language type="arc" draft="contributed">aramejčina</language>
- <language type="arn">araukánčina</language>
- <language type="arp">arapaho</language>
- <language type="arw">arawačtina</language>
- <language type="as">ásámčina</language>
- <language type="asa" draft="contributed">asu</language>
- <language type="ast">astúrčina</language>
- <language type="av">avarčina</language>
- <language type="awa">avadhčina</language>
- <language type="ay">aymarčina</language>
- <language type="az">azerbajdžančina</language>
- <language type="az" alt="short" draft="contributed">azerčina</language>
- <language type="ba">baskirčina</language>
- <language type="bal">balúčtina</language>
- <language type="ban">balijčina</language>
- <language type="bas">basa</language>
- <language type="bax" draft="contributed">bamun</language>
- <language type="bbj" draft="contributed">ghomala</language>
- <language type="be">bieloruština</language>
- <language type="bej">bedža</language>
- <language type="bem">bemba</language>
- <language type="bez" draft="contributed">bena</language>
- <language type="bfd" draft="contributed">bafut</language>
- <language type="bg">bulharčina</language>
- <language type="bho">bhódžpurčina</language>
- <language type="bi">bislama</language>
- <language type="bik">bikol</language>
- <language type="bin">bini</language>
- <language type="bkm" draft="contributed">kom</language>
- <language type="bla" draft="contributed">siksika</language>
- <language type="bm">bambarčina</language>
- <language type="bn">bengálčina</language>
- <language type="bo">tibetčina</language>
- <language type="br">bretónčina</language>
- <language type="bra">bradžčina</language>
- <language type="brx" draft="contributed">bodo</language>
- <language type="bs">bosniačtina</language>
- <language type="bss" draft="contributed">akoose</language>
- <language type="bua">buriatčina</language>
- <language type="bug">bugiština</language>
- <language type="bum" draft="contributed">bulu</language>
- <language type="byn">blin</language>
- <language type="byv" draft="contributed">medumba</language>
- <language type="ca">katalánčina</language>
- <language type="cad" draft="contributed">kaddo</language>
- <language type="car" draft="contributed">karibský</language>
- <language type="cay" draft="contributed">cayuga</language>
- <language type="cch" draft="contributed">atsam</language>
- <language type="ce">čečenčina</language>
- <language type="ceb">cebuánčina</language>
- <language type="cgg" draft="contributed">čiga</language>
- <language type="ch">čamorčina</language>
- <language type="chb">čibča</language>
- <language type="chg">čagatajčina</language>
- <language type="chk" draft="contributed">truk</language>
- <language type="chm" draft="contributed">marijčina</language>
- <language type="chn">činucký žargón</language>
- <language type="cho">čoktavčina</language>
- <language type="chp">čipevajčina</language>
- <language type="chr">čerokí</language>
- <language type="chy">čejenčina</language>
- <language type="ckb">kurdčina (sorání)</language>
- <language type="co">korzičtina</language>
- <language type="cop" draft="contributed">koptčina</language>
- <language type="cr">krí</language>
- <language type="crh" draft="contributed">krymská turečtina</language>
- <language type="cs">čeština</language>
- <language type="csb" draft="contributed">kašubčina</language>
- <language type="cu">cirkevná slovančina</language>
- <language type="cv">čuvaština</language>
- <language type="cy">waleština</language>
- <language type="da">dánčina</language>
- <language type="dak">dakotčina</language>
- <language type="dar">darginčina</language>
- <language type="dav" draft="contributed">taita</language>
- <language type="de">nemčina</language>
- <language type="de_AT">rakúska nemčina</language>
- <language type="de_CH">švajčiarska spisovná nemčina</language>
- <language type="del">delawarčina</language>
- <language type="den">slovančina</language>
- <language type="dgr">dogribčina</language>
- <language type="din">dinka</language>
- <language type="dje" draft="contributed">zarma</language>
- <language type="doi">dógrí</language>
- <language type="dsb" draft="contributed">dolnolužická srbčina</language>
- <language type="dua">duala</language>
- <language type="dum" draft="contributed">stredná holandčina</language>
- <language type="dv">divehi</language>
- <language type="dyo" draft="contributed">jola-fonyi</language>
- <language type="dyu">ďula</language>
- <language type="dz">dzongkä</language>
- <language type="dzg" draft="contributed">dazaga</language>
- <language type="ebu" draft="contributed">embu</language>
- <language type="ee">eweština</language>
- <language type="efi">efik</language>
- <language type="egy" draft="contributed">staroegyptský</language>
- <language type="eka">ekadžuk</language>
- <language type="el">gréčtina</language>
- <language type="elx">elamčina</language>
- <language type="en">angličtina</language>
- <language type="en_AU">austrálska angličtina</language>
- <language type="en_CA">kanadská angličtina</language>
- <language type="en_GB">britská angličtina</language>
- <language type="en_GB" alt="short" draft="contributed">angličtina (UK)</language>
- <language type="en_US">americká angličtina</language>
- <language type="en_US" alt="short" draft="contributed">angličtina (USA)</language>
- <language type="enm" draft="contributed">stredná angličtina</language>
- <language type="eo">esperanto</language>
- <language type="es">španielčina</language>
- <language type="es_419">latinskoamerická španielčina</language>
- <language type="es_ES">iberská španielčina</language>
- <language type="es_MX" draft="contributed">mexická španielčina</language>
- <language type="et">estónčina</language>
- <language type="eu">baskičtina</language>
- <language type="ewo">ewondo</language>
- <language type="fa">perzština</language>
- <language type="fan">fangčina</language>
- <language type="fat">fanti</language>
- <language type="ff">fulbčina</language>
- <language type="fi">fínčina</language>
- <language type="fil">filipínčina</language>
- <language type="fj">fidžijčina</language>
- <language type="fo">faerčina</language>
- <language type="fon">fončina</language>
- <language type="fr">francúzština</language>
- <language type="fr_CA">kanadská francúzština</language>
- <language type="fr_CH">švajčiarska francúzština</language>
- <language type="frm" draft="contributed">stredná francúzština</language>
- <language type="fro" draft="contributed">stará francúzština</language>
- <language type="frr" draft="contributed">severná frízština</language>
- <language type="frs">východná frízština</language>
- <language type="fur">friulčina</language>
- <language type="fy">západná frízština</language>
- <language type="ga">írčina</language>
- <language type="gaa">ga</language>
- <language type="gay">gayo</language>
- <language type="gba">gbaja</language>
- <language type="gd">škótska gaelčina</language>
- <language type="gez" draft="contributed">etiópčina</language>
- <language type="gil" draft="contributed">kiribatčina</language>
- <language type="gl">galícijčina</language>
- <language type="gmh" draft="contributed">stredná horná nemčina</language>
- <language type="gn">guaraní</language>
- <language type="goh" draft="contributed">stará horná nemčina</language>
- <language type="gon" draft="contributed">góndčina</language>
- <language type="gor" draft="contributed">gorontalo</language>
- <language type="got">gótčina</language>
- <language type="grb" draft="contributed">grebo</language>
- <language type="grc">starogréčtina</language>
- <language type="gsw">švajčiarska nemčina</language>
- <language type="gu">gudžarátčina</language>
- <language type="guz" draft="contributed">gusii</language>
- <language type="gv">mančina</language>
- <language type="gwi" draft="contributed">gwichʼin</language>
- <language type="ha">hauština</language>
- <language type="hai" draft="contributed">haida</language>
- <language type="haw">havajčina</language>
- <language type="he">hebrejčina</language>
- <language type="hi">hindčina</language>
- <language type="hil" draft="contributed">hiligajnončina</language>
- <language type="hit" draft="contributed">chetitčina</language>
- <language type="hmn" draft="contributed">hmong</language>
- <language type="ho">hiri motu</language>
- <language type="hr">chorvátčina</language>
- <language type="hsb" draft="contributed">hornolužická srbčina</language>
- <language type="ht">haitčina</language>
- <language type="hu">maďarčina</language>
- <language type="hup" draft="contributed">hupčina</language>
- <language type="hy">arménčina</language>
- <language type="hz">herero</language>
- <language type="ia">interlingua</language>
- <language type="iba" draft="contributed">ibančina</language>
- <language type="ibb" draft="contributed">ibibio</language>
- <language type="id">indonézština</language>
- <language type="ie">interlingue</language>
- <language type="ig">igboština</language>
- <language type="ii" draft="contributed">s’čchuanská ioština</language>
- <language type="ik" draft="contributed">inupiaq</language>
- <language type="ilo" draft="contributed">ilokánčina</language>
- <language type="inh" draft="contributed">inguština</language>
- <language type="io" draft="contributed">ido</language>
- <language type="is">islandčina</language>
- <language type="it">taliančina</language>
- <language type="iu" draft="contributed">inuktitut</language>
- <language type="ja">japončina</language>
- <language type="jbo" draft="contributed">lojban</language>
- <language type="jgo" draft="contributed">ngomba</language>
- <language type="jmc" draft="contributed">machame</language>
- <language type="jpr" draft="contributed">židovská perzština</language>
- <language type="jrb" draft="contributed">židovská arabčina</language>
- <language type="jv">jávčina</language>
- <language type="ka">gruzínčina</language>
- <language type="kaa" draft="contributed">karakalpačtina</language>
- <language type="kab" draft="contributed">kabylčina</language>
- <language type="kac" draft="contributed">kačjinčina</language>
- <language type="kaj" draft="contributed">jju</language>
- <language type="kam">kamba</language>
- <language type="kaw" draft="contributed">kawi</language>
- <language type="kbd" draft="contributed">kabardčina</language>
- <language type="kbl" draft="contributed">kanembu</language>
- <language type="kcg" draft="contributed">tyap</language>
- <language type="kde" draft="contributed">makonde</language>
- <language type="kea" draft="contributed">kapverdčina</language>
- <language type="kfo" draft="contributed">koro</language>
- <language type="kg">kongčina</language>
- <language type="kha" draft="contributed">khasijčina</language>
- <language type="kho" draft="contributed">chotančina</language>
- <language type="khq" draft="contributed">západná songhajčina</language>
- <language type="ki" draft="contributed">kikuju</language>
- <language type="kj">kuaňama</language>
- <language type="kk">kazaština</language>
- <language type="kkj" draft="contributed">kako</language>
- <language type="kl">grónska eskimáčtina</language>
- <language type="kln" draft="contributed">kalenjin</language>
- <language type="km">kambodžská khmérčina</language>
- <language type="kmb" draft="contributed">kimbundu</language>
- <language type="kn">kannadčina</language>
- <language type="ko">kórejčina</language>
- <language type="kok" draft="contributed">kónkánčina</language>
- <language type="kos" draft="contributed">kusaie</language>
- <language type="kpe" draft="contributed">kpelle</language>
- <language type="kr">kanurijčina</language>
- <language type="krc" draft="contributed">karačajevsko-balkarský jazyk</language>
- <language type="krl" draft="contributed">karelčina</language>
- <language type="kru" draft="contributed">kurukhčina</language>
- <language type="ks">kašmírčina</language>
- <language type="ksb" draft="contributed">šambala</language>
- <language type="ksf" draft="contributed">bafia</language>
- <language type="ksh" draft="contributed">kolínčina</language>
- <language type="ku">kurdčina</language>
- <language type="kum" draft="contributed">kumyčtina</language>
- <language type="kut" draft="contributed">kutenajčina</language>
- <language type="kv">komijčina</language>
- <language type="kw">kornčina</language>
- <language type="ky">kirgizština</language>
- <language type="la">latinčina</language>
- <language type="lad" draft="contributed">židovská španielčina</language>
- <language type="lag" draft="contributed">langi</language>
- <language type="lah" draft="contributed">lahandčina</language>
- <language type="lam" draft="contributed">lamba</language>
- <language type="lb">luxemburčina</language>
- <language type="lez" draft="contributed">lezginčina</language>
- <language type="lg">gandčina</language>
- <language type="li" draft="contributed">limburčina</language>
- <language type="ln">lingalčina</language>
- <language type="lo">laoština</language>
- <language type="lol">mongo</language>
- <language type="loz">lozi</language>
- <language type="lt">litovčina</language>
- <language type="lu">luba-katanga</language>
- <language type="lua">luba-luluánčina</language>
- <language type="lui" draft="contributed">luiseňo</language>
- <language type="lun" draft="contributed">lunda</language>
- <language type="luo" draft="contributed">luo</language>
- <language type="lus" draft="contributed">mizorámčina</language>
- <language type="luy" draft="contributed">luyia</language>
- <language type="lv">lotyština</language>
- <language type="mad" draft="contributed">madurčina</language>
- <language type="maf" draft="contributed">mafa</language>
- <language type="mag" draft="contributed">magadhčina</language>
- <language type="mai" draft="contributed">maithilčina</language>
- <language type="mak" draft="contributed">makasarčina</language>
- <language type="man" draft="contributed">mandingo</language>
- <language type="mas" draft="contributed">masajčina</language>
- <language type="mde" draft="contributed">maba</language>
- <language type="mdf" draft="contributed">mokšiančina</language>
- <language type="mdr" draft="contributed">mandarčina</language>
- <language type="men" draft="contributed">mendi</language>
- <language type="mer" draft="contributed">meru</language>
- <language type="mfe">maurícijská kreolčina</language>
- <language type="mg">malgaština</language>
- <language type="mga" draft="contributed">stredná írčina</language>
- <language type="mgh" draft="contributed">makhuwa-meetto</language>
- <language type="mgo" draft="contributed">meta’</language>
- <language type="mh">kajin-majol</language>
- <language type="mi">maorijčina</language>
- <language type="mic" draft="contributed">mikmakčina</language>
- <language type="min" draft="contributed">minangkabaučina</language>
- <language type="mk">macedónčina</language>
- <language type="ml">malajálamčina</language>
- <language type="mn">mongolčina</language>
- <language type="mnc" draft="contributed">mandžuština</language>
- <language type="mni" draft="contributed">manípurčina</language>
- <language type="moh" draft="contributed">mohawk</language>
- <language type="mos" draft="contributed">mossi</language>
- <language type="mr">maráthčina</language>
- <language type="ms">malajčina</language>
- <language type="mt">maltčina</language>
- <language type="mua" draft="contributed">mundang</language>
- <language type="mul" draft="contributed">viaceré jazyky</language>
- <language type="mus" draft="contributed">kríkčina</language>
- <language type="mwl" draft="contributed">mirandčina</language>
- <language type="mwr" draft="contributed">marawari</language>
- <language type="my">barmčina</language>
- <language type="mye" draft="contributed">myene</language>
- <language type="myv">erzjančina</language>
- <language type="na">nauru</language>
- <language type="nap" draft="contributed">neapolčina</language>
- <language type="naq" draft="contributed">nama</language>
- <language type="nb">nórsky bokmål</language>
- <language type="nd" draft="contributed">severné ndbele</language>
- <language type="nds" draft="contributed">dolná nemčina</language>
- <language type="ne">nepálčina</language>
- <language type="new" draft="contributed">nevárčina</language>
- <language type="ng">ndonga</language>
- <language type="nia" draft="contributed">niasánčina</language>
- <language type="niu" draft="contributed">niueština</language>
- <language type="nl">holandčina</language>
- <language type="nl_BE">flámčina</language>
- <language type="nmg" draft="contributed">kwasio</language>
- <language type="nn">nórsky nynorsk</language>
- <language type="nnh" draft="contributed">ngiemboon</language>
- <language type="no">nórčina</language>
- <language type="nog" draft="contributed">nogajčina</language>
- <language type="non" draft="contributed">stará nórčina</language>
- <language type="nqo" draft="contributed">n’ko</language>
- <language type="nr" draft="contributed">južná ndebelčina</language>
- <language type="nso" draft="contributed">severná sothčina</language>
- <language type="nus" draft="contributed">nuer</language>
- <language type="nv">navajo</language>
- <language type="nwc" draft="contributed">klasická nevárčina</language>
- <language type="ny">čewa</language>
- <language type="nym" draft="contributed">ňamwezi</language>
- <language type="nyn">ňankole</language>
- <language type="nyo" draft="contributed">ňoro</language>
- <language type="nzi" draft="contributed">nzima</language>
- <language type="oc">okcitánčina</language>
- <language type="oj">odžibva</language>
- <language type="om">oromčina</language>
- <language type="or">uríjčina</language>
- <language type="os">osetčina</language>
- <language type="osa" draft="contributed">osagčina</language>
- <language type="ota" draft="contributed">osmanská turečtina</language>
- <language type="pa">pandžábčina</language>
- <language type="pag" draft="contributed">pangasinančina</language>
- <language type="pal" draft="contributed">pahlaví</language>
- <language type="pam" draft="contributed">pampanga</language>
- <language type="pap" draft="contributed">papiamento</language>
- <language type="pau" draft="contributed">palaučina</language>
- <language type="peo" draft="contributed">stará perzština</language>
- <language type="phn" draft="contributed">feničtina</language>
- <language type="pi">pálí</language>
- <language type="pl">poľština</language>
- <language type="pon" draft="contributed">pohnpeičina</language>
- <language type="pro" draft="contributed">stará okcitánčina</language>
- <language type="ps">paštúnčina</language>
- <language type="ps" alt="variant" draft="contributed">paštčina</language>
- <language type="pt">portugalčina</language>
- <language type="pt_BR">brazílska portugalčina</language>
- <language type="pt_PT">iberská portugalčina</language>
- <language type="qu">kečuánčina</language>
- <language type="raj" draft="contributed">radžastančina</language>
- <language type="rap" draft="contributed">rapanujčina</language>
- <language type="rar" draft="contributed">rarotongan</language>
- <language type="rm">rétorománčina</language>
- <language type="rn">rundčina</language>
- <language type="ro">rumunčina</language>
- <language type="ro_MD">moldavčina</language>
- <language type="rof" draft="contributed">rombo</language>
- <language type="rom" draft="contributed">rómčina</language>
- <language type="root" draft="contributed">koreň</language>
- <language type="ru">ruština</language>
- <language type="rup" draft="contributed">arumunčina</language>
- <language type="rw">rwandčina</language>
- <language type="rwk" draft="contributed">rwa</language>
- <language type="sa">sanskrit</language>
- <language type="sad" draft="contributed">sandawe</language>
- <language type="sah" draft="contributed">jakutčina</language>
- <language type="sam" draft="contributed">samaritánska aramejčina</language>
- <language type="saq" draft="contributed">samburu</language>
- <language type="sas" draft="contributed">sasačtina</language>
- <language type="sat" draft="contributed">santalčina</language>
- <language type="sba" draft="contributed">ngambay</language>
- <language type="sbp" draft="contributed">sangu</language>
- <language type="sc">sardínčina</language>
- <language type="scn">sicílčina</language>
- <language type="sco" draft="contributed">škótčina</language>
- <language type="sd">sindhčina</language>
- <language type="se" draft="contributed">severná saamčina</language>
- <language type="see" draft="contributed">seneca</language>
- <language type="seh" draft="contributed">sena</language>
- <language type="sel" draft="contributed">selkupčina</language>
- <language type="ses" draft="contributed">koyraboro senni</language>
- <language type="sg">sango</language>
- <language type="sga" draft="contributed">stará írčina</language>
- <language type="sh">srbochorvátčina</language>
- <language type="shi" draft="contributed">tachelhit</language>
- <language type="shn" draft="contributed">šančina</language>
- <language type="shu" draft="contributed">čadská arabčina</language>
- <language type="si">sinhalčina</language>
- <language type="sid" draft="contributed">sidamo</language>
- <language type="sk">slovenčina</language>
- <language type="sl">slovinčina</language>
- <language type="sm">samojčina</language>
- <language type="sma" draft="contributed">južná saamčina</language>
- <language type="smj" draft="contributed">luleská saamčina</language>
- <language type="smn" draft="contributed">inariská saamčina</language>
- <language type="sms" draft="contributed">skolt</language>
- <language type="sn">šončina</language>
- <language type="snk" draft="contributed">soninke</language>
- <language type="so">somálčina</language>
- <language type="sog" draft="contributed">sogdijčina</language>
- <language type="sq">albánčina</language>
- <language type="sr">srbčina</language>
- <language type="srn" draft="contributed">sranan</language>
- <language type="srr" draft="contributed">serer</language>
- <language type="ss">svazijčina</language>
- <language type="ssy" draft="contributed">saho</language>
- <language type="st">južná sothčina</language>
- <language type="su">sundčina</language>
- <language type="suk" draft="contributed">sukuma</language>
- <language type="sus" draft="contributed">susu</language>
- <language type="sux">sumerčina</language>
- <language type="sv">švédčina</language>
- <language type="sw">swahilčina</language>
- <language type="swb" draft="contributed">komorčina</language>
- <language type="swc" draft="contributed">konžská svahilčina</language>
- <language type="syc" draft="contributed">klasická sýrčina</language>
- <language type="syr">sýrčina</language>
- <language type="ta">tamilčina</language>
- <language type="te">telugčina</language>
- <language type="tem" draft="contributed">temne</language>
- <language type="teo" draft="contributed">teso</language>
- <language type="ter" draft="contributed">tereno</language>
- <language type="tet" draft="contributed">tetum</language>
- <language type="tg">tadžičtina</language>
- <language type="th">thajčina</language>
- <language type="ti">tigriňa</language>
- <language type="tig" draft="contributed">tigrejčina</language>
- <language type="tiv" draft="contributed">tiv</language>
- <language type="tk">turkménčina</language>
- <language type="tkl" draft="contributed">tokelaučina</language>
- <language type="tl">tagalčina</language>
- <language type="tlh">klingónčina</language>
- <language type="tli" draft="contributed">tlingitčina</language>
- <language type="tmh" draft="contributed">tamašek</language>
- <language type="tn">tswančina</language>
- <language type="to">tongčina</language>
- <language type="tog" draft="contributed">ňasa tonga</language>
- <language type="tpi" draft="contributed">tok pisin</language>
- <language type="tr">turečtina</language>
- <language type="trv" draft="contributed">taroko</language>
- <language type="ts">tsonga</language>
- <language type="tsi" draft="contributed">tsimshijské jazyky</language>
- <language type="tt">tatárčina</language>
- <language type="tum" draft="contributed">tumbuka</language>
- <language type="tvl" draft="contributed">tuvalčina</language>
- <language type="tw">twi</language>
- <language type="twq" draft="contributed">tasawak</language>
- <language type="ty">tahitčina</language>
- <language type="tyv" draft="contributed">tuviančina</language>
- <language type="tzm" draft="contributed">stredomarocká berberčina</language>
- <language type="udm" draft="contributed">udmurtčina</language>
- <language type="ug">ujgurčina</language>
- <language type="uga" draft="contributed">ugaritčina</language>
- <language type="uk">ukrajinčina</language>
- <language type="umb" draft="contributed">umbundu</language>
- <language type="und">neznámy jazyk</language>
- <language type="ur">urdčina</language>
- <language type="uz">uzbečtina</language>
- <language type="vai" draft="contributed">vai</language>
- <language type="ve">vendčina</language>
- <language type="vi">vietnamčina</language>
- <language type="vo">volapük</language>
- <language type="vot" draft="contributed">vodčina</language>
- <language type="vun" draft="contributed">vunjo</language>
- <language type="wa">valónčina</language>
- <language type="wae" draft="contributed">walserčina</language>
- <language type="wal" draft="contributed">walamo</language>
- <language type="war" draft="contributed">waray</language>
- <language type="was" draft="contributed">washo</language>
- <language type="wo">wolof</language>
- <language type="xal" draft="contributed">kalmyčtina</language>
- <language type="xh">xhosa</language>
- <language type="xog" draft="contributed">soga</language>
- <language type="yao" draft="contributed">jao</language>
- <language type="yap" draft="contributed">japčina</language>
- <language type="yav" draft="contributed">jangben</language>
- <language type="ybb" draft="contributed">yemba</language>
- <language type="yi">jidiš</language>
- <language type="yo">jorubčina</language>
- <language type="yue" draft="contributed">kantončina</language>
- <language type="za">čuangčina</language>
- <language type="zap" draft="contributed">zapotéčtina</language>
- <language type="zbl" draft="contributed">systém Bliss</language>
- <language type="zen" draft="contributed">zenaga</language>
- <language type="zgh" draft="contributed">štandardný marocký tamazight</language>
- <language type="zh">čínština</language>
- <language type="zh_Hans">zjednodušená čínština</language>
- <language type="zh_Hant">tradičná čínština</language>
- <language type="zu">zuluština</language>
- <language type="zun" draft="contributed">zuniština</language>
- <language type="zxx" draft="contributed">bez jazykového obsahu</language>
- <language type="zza" draft="contributed">zázá</language>
- </languages>
- <scripts>
- <script type="Arab">arabské</script>
- <script type="Arab" alt="variant">perzsko-arabské</script>
- <script type="Armn">arménske</script>
- <script type="Bali" draft="contributed">balijský</script>
- <script type="Beng">bengálske</script>
- <script type="Bopo">bopomofo</script>
- <script type="Brai">braillovo písmo</script>
- <script type="Cyrl">cyrilika</script>
- <script type="Deva">dévanágarí</script>
- <script type="Egyp" draft="contributed">egyptské hieroglyfy</script>
- <script type="Ethi">etiópske</script>
- <script type="Geor">gruzínske</script>
- <script type="Glag" draft="contributed">hlaholika</script>
- <script type="Goth" draft="contributed">gotický</script>
- <script type="Grek">grécke</script>
- <script type="Gujr">gudžarátí</script>
- <script type="Guru">gurmukhi</script>
- <script type="Hang">hangul</script>
- <script type="Hani">han</script>
- <script type="Hans">Zjednodušené čínske</script>
- <script type="Hans" alt="stand-alone">han – zjednodušené</script>
- <script type="Hant">tradičné</script>
- <script type="Hant" alt="stand-alone">han – tradičné</script>
- <script type="Hebr">hebrejské</script>
- <script type="Hira">hiragana</script>
- <script type="Jpan">japonské</script>
- <script type="Kana">katakana</script>
- <script type="Khmr">khmérske</script>
- <script type="Knda">kannadské</script>
- <script type="Kore">kórejské</script>
- <script type="Laoo">laoské</script>
- <script type="Latn">latinka</script>
- <script type="Lina" draft="contributed">lineárna A</script>
- <script type="Linb" draft="contributed">lineárna B</script>
- <script type="Maya" draft="contributed">mayské hieroglyfy</script>
- <script type="Mlym">malajálamske</script>
- <script type="Mong">mongolské</script>
- <script type="Mymr">mjanmarské</script>
- <script type="Orya">uríjske</script>
- <script type="Osma" draft="contributed">osmanský</script>
- <script type="Runr" draft="contributed">Runové písmo</script>
- <script type="Sinh">sinhálske</script>
- <script type="Taml">tamilské</script>
- <script type="Telu">telugské</script>
- <script type="Thaa">tána</script>
- <script type="Thai">thajské</script>
- <script type="Tibt">tibetské</script>
- <script type="Zsym">symboly</script>
- <script type="Zxxx">bez zápisu</script>
- <script type="Zyyy">všeobecné</script>
- <script type="Zzzz">neznáme písmo</script>
- </scripts>
- <territories>
- <territory type="001">Svet</territory>
- <territory type="002">Afrika</territory>
- <territory type="003">Severná Amerika</territory>
- <territory type="005">Južná Amerika</territory>
- <territory type="009">Oceánia</territory>
- <territory type="011">Západná Afrika</territory>
- <territory type="013">Stredná Amerika</territory>
- <territory type="014">Východná Afrika</territory>
- <territory type="015">Severná Afrika</territory>
- <territory type="017">Stredná Afrika</territory>
- <territory type="018">južné územia Afriky</territory>
- <territory type="019">Americký kontinent</territory>
- <territory type="021">severné územia Ameriky</territory>
- <territory type="029">Karibik</territory>
- <territory type="030">Východná Ázia</territory>
- <territory type="034">Južná Ázia</territory>
- <territory type="035">Juhovýchodná Ázia</territory>
- <territory type="039">Južná Európa</territory>
- <territory type="053">Australázia</territory>
- <territory type="054">Melanézia</territory>
- <territory type="057">Mikronézia – oblasť</territory>
- <territory type="061">Polynézia</territory>
- <territory type="142">Ázia</territory>
- <territory type="143">Stredná Ázia</territory>
- <territory type="145">Západná Ázia</territory>
- <territory type="150">Európa</territory>
- <territory type="151">Východná Európa</territory>
- <territory type="154">Severná Európa</territory>
- <territory type="155">Západná Európa</territory>
- <territory type="419">Latinská Amerika</territory>
- <territory type="AC">Ostrov Ascensión</territory>
- <territory type="AD">Andorra</territory>
- <territory type="AE">Spojené arabské emiráty</territory>
- <territory type="AF">Afganistan</territory>
- <territory type="AG">Antigua a Barbuda</territory>
- <territory type="AI">Anguilla</territory>
- <territory type="AL">Albánsko</territory>
- <territory type="AM">Arménsko</territory>
- <territory type="AN">Holandské Antily</territory>
- <territory type="AO">Angola</territory>
- <territory type="AQ">Antarktída</territory>
- <territory type="AR">Argentína</territory>
- <territory type="AS">Americká Samoa</territory>
- <territory type="AT">Rakúsko</territory>
- <territory type="AU">Austrália</territory>
- <territory type="AW">Aruba</territory>
- <territory type="AX">Alandské ostrovy</territory>
- <territory type="AZ">Azerbajdžan</territory>
- <territory type="BA">Bosna a Hercegovina</territory>
- <territory type="BB">Barbados</territory>
- <territory type="BD">Bangladéš</territory>
- <territory type="BE">Belgicko</territory>
- <territory type="BF">Burkina Faso</territory>
- <territory type="BG">Bulharsko</territory>
- <territory type="BH">Bahrajn</territory>
- <territory type="BI">Burundi</territory>
- <territory type="BJ">Benin</territory>
- <territory type="BL">Svätý Bartolomej</territory>
- <territory type="BM">Bermudy</territory>
- <territory type="BN">Brunej</territory>
- <territory type="BO">Bolívia</territory>
- <territory type="BQ">Karibské Holandsko</territory>
- <territory type="BR">Brazília</territory>
- <territory type="BS">Bahamy</territory>
- <territory type="BT">Bhután</territory>
- <territory type="BV">Bouvetov ostrov</territory>
- <territory type="BW">Botswana</territory>
- <territory type="BY">Bielorusko</territory>
- <territory type="BZ">Belize</territory>
- <territory type="CA">Kanada</territory>
- <territory type="CC">Kokosové ostrovy</territory>
- <territory type="CD">Kongo - Kinshasa</territory>
- <territory type="CD" alt="variant">Kongo (DRK)</territory>
- <territory type="CF">Stredoafrická republika</territory>
- <territory type="CG">Kongo - Brazzaville</territory>
- <territory type="CG" alt="variant">Kongo (republika)</territory>
- <territory type="CH">Švajčiarsko</territory>
- <territory type="CI">Pobrežie Slonoviny</territory>
- <territory type="CK">Cookove ostrovy</territory>
- <territory type="CL">Čile</territory>
- <territory type="CM">Kamerun</territory>
- <territory type="CN">Čína</territory>
- <territory type="CO">Kolumbia</territory>
- <territory type="CP">Ostrov Clipperton</territory>
- <territory type="CR">Kostarika</territory>
- <territory type="CU">Kuba</territory>
- <territory type="CV">Kapverdy</territory>
- <territory type="CW">Curaçao</territory>
- <territory type="CX">Vianočný ostrov</territory>
- <territory type="CY">Cyprus</territory>
- <territory type="CZ">Česká republika</territory>
- <territory type="DE">Nemecko</territory>
- <territory type="DG">Diego Garcia</territory>
- <territory type="DJ">Džibutsko</territory>
- <territory type="DK">Dánsko</territory>
- <territory type="DM">Dominika</territory>
- <territory type="DO">Dominikánska republika</territory>
- <territory type="DZ">Alžírsko</territory>
- <territory type="EA">Ceuta a Melilla</territory>
- <territory type="EC">Ekvádor</territory>
- <territory type="EE">Estónsko</territory>
- <territory type="EG">Egypt</territory>
- <territory type="EH">Západná Sahara</territory>
- <territory type="ER">Eritrea</territory>
- <territory type="ES">Španielsko</territory>
- <territory type="ET">Etiópia</territory>
- <territory type="EU">Európska únia</territory>
- <territory type="FI">Fínsko</territory>
- <territory type="FJ">Fidži</territory>
- <territory type="FK">Falklandské ostrovy</territory>
- <territory type="FK" alt="variant">Falklandy (Islas Malvinas)</territory>
- <territory type="FM">Mikronézia</territory>
- <territory type="FO">Faerské ostrovy</territory>
- <territory type="FR">Francúzsko</territory>
- <territory type="GA">Gabon</territory>
- <territory type="GB">Spojené kráľovstvo</territory>
- <territory type="GB" alt="short" draft="contributed">UK</territory>
- <territory type="GD">Grenada</territory>
- <territory type="GE">Gruzínsko</territory>
- <territory type="GF">Francúzska Guayana</territory>
- <territory type="GG">Guernsey</territory>
- <territory type="GH">Ghana</territory>
- <territory type="GI">Gibraltár</territory>
- <territory type="GL">Grónsko</territory>
- <territory type="GM">Gambia</territory>
- <territory type="GN">Guinea</territory>
- <territory type="GP">Guadeloupe</territory>
- <territory type="GQ">Rovníková Guinea</territory>
- <territory type="GR">Grécko</territory>
- <territory type="GS">Južná Georgia a Južné Sandwichove ostrovy</territory>
- <territory type="GT">Guatemala</territory>
- <territory type="GU">Guam</territory>
- <territory type="GW">Guinea-Bissau</territory>
- <territory type="GY">Guayana</territory>
- <territory type="HK">Hongkong OAO Číny</territory>
- <territory type="HK" alt="short">Hongkong</territory>
- <territory type="HM">Heardov ostrov a McDonaldove ostrovy</territory>
- <territory type="HN">Honduras</territory>
- <territory type="HR">Chorvátsko</territory>
- <territory type="HT">Haiti</territory>
- <territory type="HU">Maďarsko</territory>
- <territory type="IC">Kanárske ostrovy</territory>
- <territory type="ID">Indonézia</territory>
- <territory type="IE">Írsko</territory>
- <territory type="IL">Izrael</territory>
- <territory type="IM">Ostrov Man</territory>
- <territory type="IN">India</territory>
- <territory type="IO">Britské indickooceánske územie</territory>
- <territory type="IQ">Irak</territory>
- <territory type="IR">Irán</territory>
- <territory type="IS">Island</territory>
- <territory type="IT">Taliansko</territory>
- <territory type="JE">Jersey</territory>
- <territory type="JM">Jamajka</territory>
- <territory type="JO">Jordánsko</territory>
- <territory type="JP">Japonsko</territory>
- <territory type="KE">Keňa</territory>
- <territory type="KG">Kirgizsko</territory>
- <territory type="KH">Kambodža</territory>
- <territory type="KI">Kiribati</territory>
- <territory type="KM">Komory</territory>
- <territory type="KN">Saint Kitts a Nevis</territory>
- <territory type="KP">Severná Kórea</territory>
- <territory type="KR">Južná Kórea</territory>
- <territory type="KW">Kuvajt</territory>
- <territory type="KY">Kajmanie ostrovy</territory>
- <territory type="KZ">Kazachstan</territory>
- <territory type="LA">Laos</territory>
- <territory type="LB">Libanon</territory>
- <territory type="LC">Svätá Lucia</territory>
- <territory type="LI">Lichtenštajnsko</territory>
- <territory type="LK">Srí Lanka</territory>
- <territory type="LR">Libéria</territory>
- <territory type="LS">Lesotho</territory>
- <territory type="LT">Litva</territory>
- <territory type="LU">Luxembursko</territory>
- <territory type="LV">Lotyšsko</territory>
- <territory type="LY">Líbya</territory>
- <territory type="MA">Maroko</territory>
- <territory type="MC">Monako</territory>
- <territory type="MD">Moldavsko</territory>
- <territory type="ME">Čierna Hora</territory>
- <territory type="MF">Saint Martin</territory>
- <territory type="MG">Madagaskar</territory>
- <territory type="MH">Marshallove ostrovy</territory>
- <territory type="MK">Macedónsko</territory>
- <territory type="MK" alt="variant">Macedónsko (BJRM)</territory>
- <territory type="ML">Mali</territory>
- <territory type="MM">Mjanmarsko</territory>
- <territory type="MN">Mongolsko</territory>
- <territory type="MO">Macao OAO Číny</territory>
- <territory type="MO" alt="short">Macao</territory>
- <territory type="MP">Severné Mariány</territory>
- <territory type="MQ">Martinik</territory>
- <territory type="MR">Mauritánia</territory>
- <territory type="MS">Montserrat</territory>
- <territory type="MT">Malta</territory>
- <territory type="MU">Maurícius</territory>
- <territory type="MV">Maldivy</territory>
- <territory type="MW">Malawi</territory>
- <territory type="MX">Mexiko</territory>
- <territory type="MY">Malajzia</territory>
- <territory type="MZ">Mozambik</territory>
- <territory type="NA">Namíbia</territory>
- <territory type="NC">Nová Kaledónia</territory>
- <territory type="NE">Niger</territory>
- <territory type="NF">Norfolkov ostrov</territory>
- <territory type="NG">Nigéria</territory>
- <territory type="NI">Nikaragua</territory>
- <territory type="NL">Holandsko</territory>
- <territory type="NO">Nórsko</territory>
- <territory type="NP">Nepál</territory>
- <territory type="NR">Nauru</territory>
- <territory type="NU">Niue</territory>
- <territory type="NZ">Nový Zéland</territory>
- <territory type="OM">Omán</territory>
- <territory type="PA">Panama</territory>
- <territory type="PE">Peru</territory>
- <territory type="PF">Francúzska Polynézia</territory>
- <territory type="PG">Papua Nová Guinea</territory>
- <territory type="PH">Filipíny</territory>
- <territory type="PK">Pakistan</territory>
- <territory type="PL">Poľsko</territory>
- <territory type="PM">Saint Pierre a Miquelon</territory>
- <territory type="PN">Pitcairnove ostrovy</territory>
- <territory type="PR">Portoriko</territory>
- <territory type="PS">Palestínske územie</territory>
- <territory type="PS" alt="short">Palestína</territory>
- <territory type="PT">Portugalsko</territory>
- <territory type="PW">Palau</territory>
- <territory type="PY">Paraguaj</territory>
- <territory type="QA">Katar</territory>
- <territory type="QO">Tichomorie - ostatné</territory>
- <territory type="RE">Réunion</territory>
- <territory type="RO">Rumunsko</territory>
- <territory type="RS">Srbsko</territory>
- <territory type="RU">Rusko</territory>
- <territory type="RW">Rwanda</territory>
- <territory type="SA">Saudská Arábia</territory>
- <territory type="SB">Šalamúnove ostrovy</territory>
- <territory type="SC">Seychelské ostrovy</territory>
- <territory type="SD">Sudán</territory>
- <territory type="SE">Švédsko</territory>
- <territory type="SG">Singapur</territory>
- <territory type="SH">Svätá Helena</territory>
- <territory type="SI">Slovinsko</territory>
- <territory type="SJ">Špicbergy a Jan Mayen</territory>
- <territory type="SK">Slovensko</territory>
- <territory type="SL">Sierra Leone</territory>
- <territory type="SM">San Maríno</territory>
- <territory type="SN">Senegal</territory>
- <territory type="SO">Somálsko</territory>
- <territory type="SR">Surinam</territory>
- <territory type="SS">Južný Sudán</territory>
- <territory type="ST">Svätý Tomáš a Princove ostrovy</territory>
- <territory type="SV">Salvador</territory>
- <territory type="SX">Sint Maarten</territory>
- <territory type="SY">Sýria</territory>
- <territory type="SZ">Svazijsko</territory>
- <territory type="TA">Tristan da Cunha</territory>
- <territory type="TC">Turks a Caicos</territory>
- <territory type="TD">Čad</territory>
- <territory type="TF">Francúzske južné a antarktické územia</territory>
- <territory type="TG">Togo</territory>
- <territory type="TH">Thajsko</territory>
- <territory type="TJ">Tadžikistan</territory>
- <territory type="TK">Tokelau</territory>
- <territory type="TL">Východný Timor</territory>
- <territory type="TM">Turkménsko</territory>
- <territory type="TN">Tunisko</territory>
- <territory type="TO">Tonga</territory>
- <territory type="TR">Turecko</territory>
- <territory type="TT">Trinidad a Tobago</territory>
- <territory type="TV">Tuvalu</territory>
- <territory type="TW">Taiwan</territory>
- <territory type="TZ">Tanzánia</territory>
- <territory type="UA">Ukrajina</territory>
- <territory type="UG">Uganda</territory>
- <territory type="UM">Menšie odľahlé ostrovy USA</territory>
- <territory type="US">Spojené štáty</territory>
- <territory type="US" alt="short" draft="contributed">USA</territory>
- <territory type="UY">Uruguaj</territory>
- <territory type="UZ">Uzbekistan</territory>
- <territory type="VA">Vatikán</territory>
- <territory type="VC">Svätý Vincent a Grenadíny</territory>
- <territory type="VE">Venezuela</territory>
- <territory type="VG">Britské panenské ostrovy</territory>
- <territory type="VI">Panenské ostrovy - USA</territory>
- <territory type="VN">Vietnam</territory>
- <territory type="VU">Vanuatu</territory>
- <territory type="WF">Wallis a Futuna</territory>
- <territory type="WS">Samoa</territory>
- <territory type="XK" draft="contributed">Kosovo</territory>
- <territory type="YE">Jemen</territory>
- <territory type="YT">Mayotte</territory>
- <territory type="ZA">Južná Afrika</territory>
- <territory type="ZM">Zambia</territory>
- <territory type="ZW">Zimbabwe</territory>
- <territory type="ZZ">Neznámy región</territory>
- </territories>
- <variants>
- <variant type="PINYIN" draft="provisional">romanizovaná mandarínčina</variant>
- <variant type="SCOTLAND" draft="contributed">škótska štandardná angličtina</variant>
- <variant type="WADEGILE" draft="provisional">romanizovaná mandarínčina Wade-Giles</variant>
- </variants>
- <keys>
- <key type="calendar">Kalendár</key>
- <key type="colAlternate" draft="contributed">Ignorovať radenie symbolov</key>
- <key type="colBackwards" draft="contributed">Obrátené radenie akcentov</key>
- <key type="colCaseFirst" draft="contributed">Radenie veľkých a malých písmen</key>
- <key type="colCaseLevel" draft="contributed">Rozlišovanie veľkých a malých písmen pri radení</key>
- <key type="colHiraganaQuaternary" draft="contributed">Radenie podľa slabičných písiem (kana)</key>
- <key type="collation">Triedenie</key>
- <key type="colNormalization" draft="contributed">Normalizované radenie</key>
- <key type="colNumeric" draft="contributed">Číselné radenie</key>
- <key type="colStrength" draft="contributed">Sila radenia</key>
- <key type="currency">Mena</key>
- <key type="numbers" draft="contributed">Číslice</key>
- <key type="timezone" draft="contributed">Časové pásmo</key>
- <key type="va" draft="contributed">Variant miestneho nastavenia</key>
- <key type="variableTop" draft="contributed">Radiť ako symboly</key>
- <key type="x" draft="contributed">Súkromné použitie</key>
- </keys>
- <types>
- <type type="arab" key="numbers" draft="contributed">Arabsko-indické číslice</type>
- <type type="arabext" key="numbers" draft="contributed">Rozšírené arabsko-indické číslice</type>
- <type type="armn" key="numbers" draft="contributed">Arménske číslice</type>
- <type type="armnlow" key="numbers" draft="contributed">Arménske číslice (malé písmená)</type>
- <type type="beng" key="numbers" draft="contributed">Bengálske číslice</type>
- <type type="big5han" key="collation" draft="contributed">Tradičný čínsky Big5</type>
- <type type="buddhist" key="calendar">Buddhistický kalendár</type>
- <type type="chinese" key="calendar">Čínsky kalendár</type>
- <type type="coptic" key="calendar" draft="contributed">Koptický kalendár</type>
- <type type="deva" key="numbers" draft="contributed">Číslice písma Dévanágarí</type>
- <type type="dictionary" key="collation" draft="contributed">Usporiadanie slovníka</type>
- <type type="ducet" key="collation" draft="contributed">Predvolené usporiadanie unicode</type>
- <type type="ethi" key="numbers" draft="contributed">Etiópske číslice</type>
- <type type="ethiopic" key="calendar" draft="contributed">Etiópsky kalendár</type>
- <type type="ethiopic-amete-alem" key="calendar" draft="contributed">Etiópsky kalendár Amete Alem</type>
- <type type="finance" key="numbers" draft="contributed">Finančnícky zápis čísiel</type>
- <type type="fullwide" key="numbers" draft="contributed">Číslice s celou šírkou</type>
- <type type="gb2312han" key="collation" draft="contributed">Zjednodušený čínsky GB2312</type>
- <type type="geor" key="numbers" draft="contributed">Gruzínske číslice</type>
- <type type="gregorian" key="calendar">Gregoriánsky kalendár</type>
- <type type="grek" key="numbers" draft="contributed">Grécke číslice</type>
- <type type="greklow" key="numbers" draft="contributed">Grécke číslice (malé písmená)</type>
- <type type="gujr" key="numbers" draft="contributed">Gudžarátske číslice</type>
- <type type="guru" key="numbers" draft="contributed">Číslice Gurmukhi</type>
- <type type="hanidec" key="numbers" draft="contributed">Čínske desatinné číslice</type>
- <type type="hans" key="numbers" draft="contributed">Číslice zjednodušenej čínštiny</type>
- <type type="hansfin" key="numbers" draft="contributed">Finančné číslice zjednodušenej čínštiny</type>
- <type type="hant" key="numbers" draft="contributed">Číslice tradičnej čínštiny</type>
- <type type="hantfin" key="numbers" draft="contributed">Finančné číslice tradičnej čínštiny</type>
- <type type="hebr" key="numbers" draft="contributed">Hebrejské číslice</type>
- <type type="hebrew" key="calendar">Židovský kalendár</type>
- <type type="identical" key="colStrength" draft="contributed">Radiť všetko</type>
- <type type="indian" key="calendar" draft="contributed">Indický národný kalendár</type>
- <type type="islamic" key="calendar">Islamský kalendár</type>
- <type type="islamic-civil" key="calendar">Islamský občiansky kalendár</type>
- <type type="japanese" key="calendar">Japonský kalendár</type>
- <type type="jpan" key="numbers" draft="contributed">Japonské číslice</type>
- <type type="jpanfin" key="numbers" draft="contributed">Japonské finančné číslice</type>
- <type type="khmr" key="numbers" draft="contributed">Khmérske číslice</type>
- <type type="knda" key="numbers" draft="contributed">Kannadské číslice</type>
- <type type="laoo" key="numbers" draft="contributed">Číslice písma lao</type>
- <type type="latn" key="numbers">Arabské číslice</type>
- <type type="lower" key="colCaseFirst" draft="contributed">Najprv radiť malé písmená</type>
- <type type="mlym" key="numbers" draft="contributed">Malajámske číslice</type>
- <type type="mong" key="numbers" draft="contributed">Mongolské číslice</type>
- <type type="mymr" key="numbers" draft="contributed">Mjanmarské číslice</type>
- <type type="native" key="numbers" draft="contributed">Natívne číslice</type>
- <type type="no" key="colBackwards" draft="contributed">Normálne radenie akcentov</type>
- <type type="no" key="colCaseFirst" draft="contributed">Normálne radenie veľkých a malých písmen</type>
- <type type="no" key="colCaseLevel" draft="contributed">Pri radení nerozlišovať veľké a malé písmená</type>
- <type type="no" key="colHiraganaQuaternary" draft="contributed">Radiť slabičné písma (kana) samostatne</type>
- <type type="no" key="colNormalization" draft="contributed">Radiť bez normalizácie</type>
- <type type="no" key="colNumeric" draft="contributed">Radiť číslice jednotlivo</type>
- <type type="non-ignorable" key="colAlternate" draft="contributed">Radiť symboly</type>
- <type type="orya" key="numbers" draft="contributed">Oríjske číslice</type>
- <type type="persian" key="calendar" draft="contributed">Perzský kalendár</type>
- <type type="phonebook" key="collation">Lexikografické triedenie</type>
- <type type="phonetic" key="collation" draft="contributed">Fonetické radenie</type>
- <type type="pinyin" key="collation">Triedenie pinyin</type>
- <type type="primary" key="colStrength" draft="contributed">Radiť iba základné písmená</type>
- <type type="quaternary" key="colStrength" draft="contributed">Radiť akcenty/veľké a malé písmená/šírku/kana</type>
- <type type="reformed" key="collation" draft="contributed">Reformované usporiadanie</type>
- <type type="roc" key="calendar" draft="contributed">Kalendár Čínskej republiky</type>
- <type type="roman" key="numbers" draft="contributed">Rímske číslice</type>
- <type type="romanlow" key="numbers" draft="contributed">Rímske číslice (malé písmená)</type>
- <type type="search" key="collation" draft="contributed">Všeobecné vyhľadávanie</type>
- <type type="searchjl" key="collation" draft="contributed">Hľadať podľa počiatočnej spoluhlásky písma Hangul</type>
- <type type="secondary" key="colStrength" draft="contributed">Radiť akcenty</type>
- <type type="shifted" key="colAlternate" draft="contributed">Pri radení ignorovať symboly</type>
- <type type="standard" key="collation" draft="contributed">Štandardné poradie</type>
- <type type="stroke" key="collation">Tiedenie podľa ťahov</type>
- <type type="taml" key="numbers" draft="contributed">Tamilské číslice</type>
- <type type="tamldec" key="numbers" draft="contributed">Tamilské číslice</type>
- <type type="telu" key="numbers" draft="contributed">Telugské číslice</type>
- <type type="tertiary" key="colStrength" draft="contributed">Radiť akcenty/veľké a malé písmená/šírku</type>
- <type type="thai" key="numbers" draft="contributed">Thajské číslice</type>
- <type type="tibt" key="numbers" draft="contributed">Tibetské číslice</type>
- <type type="traditional" key="collation">Tradičné</type>
- <type type="traditional" key="numbers" draft="contributed">Tradičné číslovky</type>
- <type type="unihan" key="collation" draft="contributed">Usporiadanie podľa znakov radikál</type>
- <type type="upper" key="colCaseFirst" draft="contributed">Najprv radiť veľké písmená</type>
- <type type="vaii" key="numbers" draft="contributed">Vaiské číslice</type>
- <type type="yes" key="colBackwards" draft="contributed">Radiť akcenty opačne</type>
- <type type="yes" key="colCaseLevel" draft="contributed">Pri radení rozlišovať veľké a malé písmená</type>
- <type type="yes" key="colHiraganaQuaternary" draft="contributed">Radiť slabičné písma (kana) inak</type>
- <type type="yes" key="colNormalization" draft="contributed">Radenie podľa normalizovaného kódovania Unicode</type>
- <type type="yes" key="colNumeric" draft="contributed">Numerické radenie číslic</type>
- </types>
- <transformNames>
- <transformName type="BGN" draft="contributed">BGN</transformName>
- <transformName type="Numeric" draft="contributed">Číslice</transformName>
- <transformName type="Tone" draft="contributed">Tón</transformName>
- <transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
- <transformName type="x-Accents" draft="contributed">Diakritika</transformName>
- <transformName type="x-Fullwidth" draft="contributed">Celá šírka</transformName>
- <transformName type="x-Halfwidth" draft="contributed">Polovičná šírka</transformName>
- <transformName type="x-Jamo" draft="contributed">Jamo</transformName>
- <transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
- <transformName type="x-Publishing" draft="contributed">Uverejnenie</transformName>
- </transformNames>
- <measurementSystemNames>
- <measurementSystemName type="metric">metrický</measurementSystemName>
- <measurementSystemName type="UK">imperiálny</measurementSystemName>
- <measurementSystemName type="US">americký</measurementSystemName>
- </measurementSystemNames>
- <codePatterns>
- <codePattern type="language" draft="contributed">Jazyk: {0}</codePattern>
- <codePattern type="script">Písmo: {0}</codePattern>
- <codePattern type="territory" draft="contributed">Región: {0}</codePattern>
- </codePatterns>
- </localeDisplayNames>
- <contextTransforms>
- <contextTransformUsage type="day-format-except-narrow">
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="day-standalone-except-narrow">
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="languages">
- <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="month-format-except-narrow">
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- <contextTransformUsage type="month-standalone-except-narrow">
- <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
- </contextTransformUsage>
- </contextTransforms>
- <characters>
- <exemplarCharacters>[a á ä b c č d ď e é f g h {ch} i í j k l ĺ ľ m n ň o ó ô p q r ŕ s š t ť u ú v w x y ý z ž]</exemplarCharacters>
- <exemplarCharacters type="auxiliary" draft="contributed">[à ă â å ā æ ç è ĕ ê ë ē ì ĭ î ï ī ñ ò ŏ ö ø ō œ ř ù ŭ û ü ū ÿ]</exemplarCharacters>
- <exemplarCharacters type="index" draft="contributed">[A Ä B C Č D Ď E F G H {CH} I J K L Ľ M N O Ô P Q R S Š T Ť U V W X Y Z Ž]</exemplarCharacters>
- <exemplarCharacters type="punctuation">[\- ‐ – , ; \: ! ? . … ‘ ‚ “ „ ( ) \[ \] § @ * / \&]</exemplarCharacters>
- <ellipsis type="final">{0}…</ellipsis>
- <ellipsis type="initial">… {0}</ellipsis>
- <ellipsis type="medial">{0}… {1}</ellipsis>
- <ellipsis type="word-final" draft="contributed">{0} …</ellipsis>
- <ellipsis type="word-initial" draft="contributed">… {0}</ellipsis>
- <ellipsis type="word-medial" draft="contributed">{0} … {1}</ellipsis>
- <moreInformation>?</moreInformation>
- </characters>
- <delimiters>
- <quotationStart>„</quotationStart>
- <quotationEnd>“</quotationEnd>
- <alternateQuotationStart>‚</alternateQuotationStart>
- <alternateQuotationEnd>‘</alternateQuotationEnd>
- </delimiters>
- <dates>
- <calendars>
- <calendar type="generic">
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d. MMMM y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d.M.y G</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d.M.y GGGGG</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d.</dateFormatItem>
- <dateFormatItem id="Ed">E d.</dateFormatItem>
- <dateFormatItem id="Gy">y G</dateFormatItem>
- <dateFormatItem id="GyMMM">LLL y G</dateFormatItem>
- <dateFormatItem id="GyMMMd" draft="contributed">d.M.y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd">E, d. MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M" draft="contributed">L.</dateFormatItem>
- <dateFormatItem id="Md">d.M.</dateFormatItem>
- <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
- <dateFormatItem id="MMM" draft="contributed">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d. MMM.</dateFormatItem>
- <dateFormatItem id="MMMEd">E, d. MMM.</dateFormatItem>
- <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, d. MMMM</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y G</dateFormatItem>
- <dateFormatItem id="yyyy">y G</dateFormatItem>
- <dateFormatItem id="yyyyM">M.y G</dateFormatItem>
- <dateFormatItem id="yyyyMd" draft="contributed">d.M.y G</dateFormatItem>
- <dateFormatItem id="yyyyMEd">E d. M. y G</dateFormatItem>
- <dateFormatItem id="yyyyMMM">LLL y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMd" draft="contributed">d.M.y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMEd">E, d. MMM y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMM">LLLL y G</dateFormatItem>
- <dateFormatItem id="yyyyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
- <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
- </availableFormats>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d. – d.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h – h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH – HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm - h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm - h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">H:mm – H:mm</greatestDifference>
- <greatestDifference id="m">H:mm – H:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm - h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm - h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">H:mm – H:mm v</greatestDifference>
- <greatestDifference id="m">H:mm – H:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a" draft="contributed">h a - h a v</greatestDifference>
- <greatestDifference id="h">h – h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH – HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M. – M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d.M. - d.M.</greatestDifference>
- <greatestDifference id="M">d.M. - d.M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, d.M. - E, d.M.</greatestDifference>
- <greatestDifference id="M">E, d.M. - E, d.M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL – LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d. - d. MMM</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M" draft="contributed">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y - y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M.y - M.y G</greatestDifference>
- <greatestDifference id="y">M.y - M.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d.M.y - d.M.y G</greatestDifference>
- <greatestDifference id="M">d.M.y - d.M.y G</greatestDifference>
- <greatestDifference id="y">d.M.y - d.M.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, d.M.y - E, d.M.y G</greatestDifference>
- <greatestDifference id="M">E, d.M.y - E, d.M.y G</greatestDifference>
- <greatestDifference id="y">E, d.M.y - E, d.M.y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">LLL - LLL y G</greatestDifference>
- <greatestDifference id="y">LLL y - LLL y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d. - d. MMM y G</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM y G</greatestDifference>
- <greatestDifference id="y">d. MMM y - d. MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM y G</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM y G</greatestDifference>
- <greatestDifference id="y">E, d. MMM y - E, d. MMM y G</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">LLLL - LLLL y G</greatestDifference>
- <greatestDifference id="y">LLLL y - LLLL y G</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- <calendar type="gregorian">
- <months>
- <monthContext type="format">
- <monthWidth type="abbreviated">
- <month type="1">jan</month>
- <month type="2">feb</month>
- <month type="3">mar</month>
- <month type="4">apr</month>
- <month type="5">máj</month>
- <month type="6">jún</month>
- <month type="7">júl</month>
- <month type="8">aug</month>
- <month type="9">sep</month>
- <month type="10">okt</month>
- <month type="11">nov</month>
- <month type="12">dec</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">januára</month>
- <month type="2">februára</month>
- <month type="3">marca</month>
- <month type="4">apríla</month>
- <month type="5">mája</month>
- <month type="6">júna</month>
- <month type="7">júla</month>
- <month type="8">augusta</month>
- <month type="9">septembra</month>
- <month type="10">októbra</month>
- <month type="11">novembra</month>
- <month type="12">decembra</month>
- </monthWidth>
- </monthContext>
- <monthContext type="stand-alone">
- <monthWidth type="narrow">
- <month type="1">j</month>
- <month type="2">f</month>
- <month type="3">m</month>
- <month type="4">a</month>
- <month type="5">m</month>
- <month type="6">j</month>
- <month type="7">j</month>
- <month type="8">a</month>
- <month type="9">s</month>
- <month type="10">o</month>
- <month type="11">n</month>
- <month type="12">d</month>
- </monthWidth>
- <monthWidth type="wide">
- <month type="1">január</month>
- <month type="2">február</month>
- <month type="3">marec</month>
- <month type="4">apríl</month>
- <month type="5">máj</month>
- <month type="6">jún</month>
- <month type="7">júl</month>
- <month type="8">august</month>
- <month type="9">september</month>
- <month type="10">október</month>
- <month type="11">november</month>
- <month type="12">december</month>
- </monthWidth>
- </monthContext>
- </months>
- <days>
- <dayContext type="format">
- <dayWidth type="abbreviated">
- <day type="sun">ne</day>
- <day type="mon">po</day>
- <day type="tue">ut</day>
- <day type="wed">st</day>
- <day type="thu">št</day>
- <day type="fri">pi</day>
- <day type="sat">so</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun" draft="contributed">N</day>
- <day type="mon" draft="contributed">P</day>
- <day type="tue" draft="contributed">U</day>
- <day type="wed" draft="contributed">S</day>
- <day type="thu" draft="contributed">Š</day>
- <day type="fri" draft="contributed">P</day>
- <day type="sat" draft="contributed">S</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">Ne</day>
- <day type="mon">Po</day>
- <day type="tue">Ut</day>
- <day type="wed">St</day>
- <day type="thu">Št</day>
- <day type="fri">Pi</day>
- <day type="sat">So</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun">nedeľa</day>
- <day type="mon">pondelok</day>
- <day type="tue">utorok</day>
- <day type="wed">streda</day>
- <day type="thu">štvrtok</day>
- <day type="fri">piatok</day>
- <day type="sat">sobota</day>
- </dayWidth>
- </dayContext>
- <dayContext type="stand-alone">
- <dayWidth type="abbreviated">
- <day type="sun" draft="contributed">ne</day>
- <day type="mon" draft="contributed">po</day>
- <day type="tue" draft="contributed">ut</day>
- <day type="wed" draft="contributed">st</day>
- <day type="thu" draft="contributed">št</day>
- <day type="fri" draft="contributed">pi</day>
- <day type="sat" draft="contributed">so</day>
- </dayWidth>
- <dayWidth type="narrow">
- <day type="sun">N</day>
- <day type="mon">P</day>
- <day type="tue">U</day>
- <day type="wed">S</day>
- <day type="thu">Š</day>
- <day type="fri">P</day>
- <day type="sat">S</day>
- </dayWidth>
- <dayWidth type="short">
- <day type="sun">Ne</day>
- <day type="mon">Po</day>
- <day type="tue">Ut</day>
- <day type="wed">St</day>
- <day type="thu">Št</day>
- <day type="fri">Pi</day>
- <day type="sat">So</day>
- </dayWidth>
- <dayWidth type="wide">
- <day type="sun" draft="contributed">nedeľa</day>
- <day type="mon" draft="contributed">pondelok</day>
- <day type="tue" draft="contributed">utorok</day>
- <day type="wed" draft="contributed">streda</day>
- <day type="thu" draft="contributed">štvrtok</day>
- <day type="fri" draft="contributed">piatok</day>
- <day type="sat" draft="contributed">sobota</day>
- </dayWidth>
- </dayContext>
- </days>
- <quarters>
- <quarterContext type="format">
- <quarterWidth type="abbreviated">
- <quarter type="1">Q1</quarter>
- <quarter type="2">Q2</quarter>
- <quarter type="3">Q3</quarter>
- <quarter type="4">Q4</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1">1. štvrťrok</quarter>
- <quarter type="2">2. štvrťrok</quarter>
- <quarter type="3">3. štvrťrok</quarter>
- <quarter type="4">4. štvrťrok</quarter>
- </quarterWidth>
- </quarterContext>
- <quarterContext type="stand-alone">
- <quarterWidth type="abbreviated">
- <quarter type="1" draft="contributed">1Q</quarter>
- <quarter type="2" draft="contributed">2Q</quarter>
- <quarter type="3" draft="contributed">3Q</quarter>
- <quarter type="4" draft="contributed">4Q</quarter>
- </quarterWidth>
- <quarterWidth type="narrow">
- <quarter type="1">1</quarter>
- <quarter type="2">2</quarter>
- <quarter type="3">3</quarter>
- <quarter type="4">4</quarter>
- </quarterWidth>
- <quarterWidth type="wide">
- <quarter type="1" draft="contributed">1. štvrťrok</quarter>
- <quarter type="2" draft="contributed">2. štvrťrok</quarter>
- <quarter type="3" draft="contributed">3. štvrťrok</quarter>
- <quarter type="4" draft="contributed">4. štvrťrok</quarter>
- </quarterWidth>
- </quarterContext>
- </quarters>
- <dayPeriods>
- <dayPeriodContext type="format">
- <dayPeriodWidth type="wide">
- <dayPeriod type="am">AM</dayPeriod>
- <dayPeriod type="pm">PM</dayPeriod>
- </dayPeriodWidth>
- </dayPeriodContext>
- </dayPeriods>
- <eras>
- <eraAbbr>
- <era type="0">pred n.l.</era>
- <era type="1">n.l.</era>
- </eraAbbr>
- </eras>
- <dateFormats>
- <dateFormatLength type="full">
- <dateFormat>
- <pattern>EEEE, d. MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="long">
- <dateFormat>
- <pattern>d. MMMM y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="medium">
- <dateFormat>
- <pattern>d.M.y</pattern>
- </dateFormat>
- </dateFormatLength>
- <dateFormatLength type="short">
- <dateFormat>
- <pattern>d.M.y</pattern>
- </dateFormat>
- </dateFormatLength>
- </dateFormats>
- <timeFormats>
- <timeFormatLength type="full">
- <timeFormat>
- <pattern>H:mm:ss zzzz</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="long">
- <timeFormat>
- <pattern>H:mm:ss z</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="medium">
- <timeFormat>
- <pattern>H:mm:ss</pattern>
- </timeFormat>
- </timeFormatLength>
- <timeFormatLength type="short">
- <timeFormat>
- <pattern>H:mm</pattern>
- </timeFormat>
- </timeFormatLength>
- </timeFormats>
- <dateTimeFormats>
- <dateTimeFormatLength type="full">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="long">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="medium">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <dateTimeFormatLength type="short">
- <dateTimeFormat>
- <pattern>{1} {0}</pattern>
- </dateTimeFormat>
- </dateTimeFormatLength>
- <availableFormats>
- <dateFormatItem id="d">d.</dateFormatItem>
- <dateFormatItem id="Ed">E d.</dateFormatItem>
- <dateFormatItem id="Ehm" draft="contributed">E h:mm</dateFormatItem>
- <dateFormatItem id="EHm" draft="contributed">E HH:mm</dateFormatItem>
- <dateFormatItem id="Ehms" draft="contributed">E h:mm:ss</dateFormatItem>
- <dateFormatItem id="EHms" draft="contributed">E HH:mm:ss</dateFormatItem>
- <dateFormatItem id="Gy" draft="contributed">y G</dateFormatItem>
- <dateFormatItem id="GyMMM" draft="contributed">LLL y G</dateFormatItem>
- <dateFormatItem id="GyMMMd" draft="contributed">d.M.y G</dateFormatItem>
- <dateFormatItem id="GyMMMEd" draft="contributed">E, d. MMM y G</dateFormatItem>
- <dateFormatItem id="GyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
- <dateFormatItem id="h">h a</dateFormatItem>
- <dateFormatItem id="H">H</dateFormatItem>
- <dateFormatItem id="hm">h:mm a</dateFormatItem>
- <dateFormatItem id="Hm">H:mm</dateFormatItem>
- <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
- <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
- <dateFormatItem id="M" draft="contributed">L.</dateFormatItem>
- <dateFormatItem id="Md">d.M.</dateFormatItem>
- <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
- <dateFormatItem id="MMM" draft="contributed">LLL</dateFormatItem>
- <dateFormatItem id="MMMd">d. MMM.</dateFormatItem>
- <dateFormatItem id="MMMEd">E, d. MMM.</dateFormatItem>
- <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
- <dateFormatItem id="MMMMEd">E, d. MMMM</dateFormatItem>
- <dateFormatItem id="mmss">mm:ss</dateFormatItem>
- <dateFormatItem id="ms">mm:ss</dateFormatItem>
- <dateFormatItem id="y">y</dateFormatItem>
- <dateFormatItem id="yM">M.y</dateFormatItem>
- <dateFormatItem id="yMd">d.M.y</dateFormatItem>
- <dateFormatItem id="yMEd">E d. M. y</dateFormatItem>
- <dateFormatItem id="yMMM">LLL y</dateFormatItem>
- <dateFormatItem id="yMMMd">d.M.y</dateFormatItem>
- <dateFormatItem id="yMMMEd">E, d. MMM y</dateFormatItem>
- <dateFormatItem id="yMMMM">LLLL y</dateFormatItem>
- <dateFormatItem id="yMMMMd">d. MMMM y</dateFormatItem>
- <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
- <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
- </availableFormats>
- <appendItems>
- <appendItem request="Timezone" draft="contributed">{0} {1}</appendItem>
- </appendItems>
- <intervalFormats>
- <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
- <intervalFormatItem id="d">
- <greatestDifference id="d">d. – d.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="h">
- <greatestDifference id="a">h a – h a</greatestDifference>
- <greatestDifference id="h">h – h a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="H">
- <greatestDifference id="H">HH – HH</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hm">
- <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
- <greatestDifference id="h">h:mm - h:mm a</greatestDifference>
- <greatestDifference id="m">h:mm - h:mm a</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hm">
- <greatestDifference id="H">H:mm – H:mm</greatestDifference>
- <greatestDifference id="m">H:mm – H:mm</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hmv">
- <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
- <greatestDifference id="h">h:mm - h:mm a v</greatestDifference>
- <greatestDifference id="m">h:mm - h:mm a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hmv">
- <greatestDifference id="H">H:mm – H:mm v</greatestDifference>
- <greatestDifference id="m">H:mm – H:mm v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="hv">
- <greatestDifference id="a" draft="contributed">h a - h a v</greatestDifference>
- <greatestDifference id="h">h – h a v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Hv">
- <greatestDifference id="H">HH – HH v</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="M">
- <greatestDifference id="M">M. – M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="Md">
- <greatestDifference id="d">d.M. - d.M.</greatestDifference>
- <greatestDifference id="M">d.M. - d.M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MEd">
- <greatestDifference id="d">E, d.M. - E, d.M.</greatestDifference>
- <greatestDifference id="M">E, d.M. - E, d.M.</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMM">
- <greatestDifference id="M">LLL – LLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMd">
- <greatestDifference id="d">d. - d. MMM</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="MMMM">
- <greatestDifference id="M" draft="contributed">LLLL-LLLL</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="y">
- <greatestDifference id="y">y - y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yM">
- <greatestDifference id="M">M.y - M.y</greatestDifference>
- <greatestDifference id="y">M.y - M.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMd">
- <greatestDifference id="d">d.M.y - d.M.y</greatestDifference>
- <greatestDifference id="M">d.M.y - d.M.y</greatestDifference>
- <greatestDifference id="y">d.M.y - d.M.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMEd">
- <greatestDifference id="d">E, d.M.y - E, d.M.y</greatestDifference>
- <greatestDifference id="M">E, d.M.y - E, d.M.y</greatestDifference>
- <greatestDifference id="y">E, d.M.y - E, d.M.y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMM">
- <greatestDifference id="M">LLL - LLL y</greatestDifference>
- <greatestDifference id="y">LLL y - LLL y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMd">
- <greatestDifference id="d">d. - d. MMM y</greatestDifference>
- <greatestDifference id="M">d. MMM - d. MMM y</greatestDifference>
- <greatestDifference id="y">d. MMM y - d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMEd">
- <greatestDifference id="d">E, d. - E, d. MMM y</greatestDifference>
- <greatestDifference id="M">E, d. MMM - E, d. MMM y</greatestDifference>
- <greatestDifference id="y">E, d. MMM y - E, d. MMM y</greatestDifference>
- </intervalFormatItem>
- <intervalFormatItem id="yMMMM">
- <greatestDifference id="M">LLLL - LLLL y</greatestDifference>
- <greatestDifference id="y">LLLL y - LLLL y</greatestDifference>
- </intervalFormatItem>
- </intervalFormats>
- </dateTimeFormats>
- </calendar>
- </calendars>
- <fields>
- <field type="era">
- <displayName>Éra</displayName>
- </field>
- <field type="year">
- <displayName>Rok</displayName>
- <relative type="-1">Minulý rok</relative>
- <relative type="0">Tento rok</relative>
- <relative type="1">Budúci rok</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} rok</relativeTimePattern>
- <relativeTimePattern count="few">O {0} roky</relativeTimePattern>
- <relativeTimePattern count="many">O {0} roka</relativeTimePattern>
- <relativeTimePattern count="other">O {0} rokov</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} rokom</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} rokmi</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} rokmi</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} rokmi</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="month">
- <displayName>Mesiac</displayName>
- <relative type="-1" draft="contributed">Posledný mesiac</relative>
- <relative type="0">Tento mesiac</relative>
- <relative type="1">Budúci mesiac</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} mesiac</relativeTimePattern>
- <relativeTimePattern count="few">O {0} mesiace</relativeTimePattern>
- <relativeTimePattern count="many">O {0} mesiaca</relativeTimePattern>
- <relativeTimePattern count="other">O {0} mesiacov</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} mesiacom</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} mesiacmi</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} mesiacmi</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} mesiacmi</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="week">
- <displayName>Týždeň</displayName>
- <relative type="-1">Minulý týždeň</relative>
- <relative type="0">Tento týždeň</relative>
- <relative type="1">Budúci týždeň</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} týždeň</relativeTimePattern>
- <relativeTimePattern count="few">O {0} týždne</relativeTimePattern>
- <relativeTimePattern count="many">O {0} týždňa</relativeTimePattern>
- <relativeTimePattern count="other">O {0} týždňov</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} týždňom</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} týždňami</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} týždňami</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} týždňami</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="day">
- <displayName>Deň</displayName>
- <relative type="-2">Predvčerom</relative>
- <relative type="-1">Včera</relative>
- <relative type="0">Dnes</relative>
- <relative type="1">Zajtra</relative>
- <relative type="2">Pozajtra</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} deň</relativeTimePattern>
- <relativeTimePattern count="few">O {0} dni</relativeTimePattern>
- <relativeTimePattern count="many">O {0} dňa</relativeTimePattern>
- <relativeTimePattern count="other">O {0} dní</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} dňom</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} dňami</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} dňami</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} dňami</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="weekday">
- <displayName>Deň v týždni</displayName>
- </field>
- <field type="sun">
- <relative type="-1" draft="contributed">Minulú nedeľu</relative>
- <relative type="0" draft="contributed">Túto nedeľu</relative>
- <relative type="1" draft="contributed">Budúcu nedeľu</relative>
- </field>
- <field type="mon">
- <relative type="-1" draft="contributed">Minulý pondelok</relative>
- <relative type="0" draft="contributed">Tento pondelok</relative>
- <relative type="1" draft="contributed">Budúci pondelok</relative>
- </field>
- <field type="tue">
- <relative type="-1" draft="contributed">Minulý utorok</relative>
- <relative type="0" draft="contributed">Tento utorok</relative>
- <relative type="1" draft="contributed">Budúci utorok</relative>
- </field>
- <field type="wed">
- <relative type="-1" draft="contributed">Minulú stredu</relative>
- <relative type="0" draft="contributed">Túto stredu</relative>
- <relative type="1" draft="contributed">Budúcu stredu</relative>
- </field>
- <field type="thu">
- <relative type="-1" draft="contributed">Minulý štvrtok</relative>
- <relative type="0" draft="contributed">Tento štvrtok</relative>
- <relative type="1" draft="contributed">Budúci štvrtok</relative>
- </field>
- <field type="fri">
- <relative type="-1" draft="contributed">Minulý piatok</relative>
- <relative type="0" draft="contributed">Tento piatok</relative>
- <relative type="1" draft="contributed">Budúci piatok</relative>
- </field>
- <field type="sat">
- <relative type="-1" draft="contributed">Minulú sobotu</relative>
- <relative type="0" draft="contributed">Túto sobotu</relative>
- <relative type="1" draft="contributed">Budúcu sobotu</relative>
- </field>
- <field type="dayperiod">
- <displayName>Časť dňa</displayName>
- </field>
- <field type="hour">
- <displayName>Hodina</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} hodinu</relativeTimePattern>
- <relativeTimePattern count="few">O {0} hodiny</relativeTimePattern>
- <relativeTimePattern count="many">O {0} hodiny</relativeTimePattern>
- <relativeTimePattern count="other">O {0} hodín</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} hodinou</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} hodinami</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} hodinami</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} hodinami</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="minute">
- <displayName>Minúta</displayName>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} minútu</relativeTimePattern>
- <relativeTimePattern count="few">O {0} minúty</relativeTimePattern>
- <relativeTimePattern count="many">O {0} minúty</relativeTimePattern>
- <relativeTimePattern count="other">O {0} minút</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} minútou</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} minútami</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} minútami</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} minútami</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="second">
- <displayName>Sekunda</displayName>
- <relative type="0">teraz</relative>
- <relativeTime type="future">
- <relativeTimePattern count="one">O {0} sekundu</relativeTimePattern>
- <relativeTimePattern count="few">O {0} sekundy</relativeTimePattern>
- <relativeTimePattern count="many">O {0} sekundy</relativeTimePattern>
- <relativeTimePattern count="other">O {0} sekúnd</relativeTimePattern>
- </relativeTime>
- <relativeTime type="past">
- <relativeTimePattern count="one">Pred {0} sekundou</relativeTimePattern>
- <relativeTimePattern count="few">Pred {0} sekundami</relativeTimePattern>
- <relativeTimePattern count="many">Pred {0} sekundami</relativeTimePattern>
- <relativeTimePattern count="other">Pred {0} sekundami</relativeTimePattern>
- </relativeTime>
- </field>
- <field type="zone">
- <displayName>Časové pásmo</displayName>
- </field>
- </fields>
- <timeZoneNames>
- <hourFormat>+HH:mm;-HH:mm</hourFormat>
- <gmtFormat>GMT{0}</gmtFormat>
- <gmtZeroFormat>GMT</gmtZeroFormat>
- <regionFormat>Časové pásmo {0}</regionFormat>
- <regionFormat type="daylight" draft="contributed">{0} (+1)</regionFormat>
- <regionFormat type="standard" draft="contributed">{0} (+0)</regionFormat>
- <fallbackFormat>{1} ({0})</fallbackFormat>
- <zone type="Etc/Unknown">
- <exemplarCity>Neznáme mesto</exemplarCity>
- </zone>
- <zone type="Asia/Dubai">
- <exemplarCity draft="contributed">Dubaj</exemplarCity>
- </zone>
- <zone type="Asia/Kabul">
- <exemplarCity draft="contributed">Kábul</exemplarCity>
- </zone>
- <zone type="Europe/Tirane">
- <exemplarCity draft="contributed">Tirana</exemplarCity>
- </zone>
- <zone type="Asia/Yerevan">
- <exemplarCity draft="contributed">Jerevan</exemplarCity>
- </zone>
- <zone type="Antarctica/DumontDUrville">
- <exemplarCity draft="contributed">Dumont D'Urville</exemplarCity>
- </zone>
- <zone type="Europe/Vienna">
- <exemplarCity draft="contributed">Viedeň</exemplarCity>
- </zone>
- <zone type="Asia/Dhaka">
- <exemplarCity draft="contributed">Dháka</exemplarCity>
- </zone>
- <zone type="Europe/Brussels">
- <exemplarCity draft="contributed">Brusel</exemplarCity>
- </zone>
- <zone type="Asia/Bahrain">
- <exemplarCity draft="contributed">Bahrajn</exemplarCity>
- </zone>
- <zone type="America/St_Barthelemy">
- <exemplarCity draft="contributed">Svätý Bartolomej</exemplarCity>
- </zone>
- <zone type="Atlantic/Bermuda">
- <exemplarCity draft="contributed">Bermudy</exemplarCity>
- </zone>
- <zone type="Asia/Brunei">
- <exemplarCity draft="contributed">Brunej</exemplarCity>
- </zone>
- <zone type="America/Coral_Harbour">
- <exemplarCity draft="contributed">Atikokan</exemplarCity>
- </zone>
- <zone type="America/St_Johns">
- <exemplarCity draft="contributed">Sv. Ján</exemplarCity>
- </zone>
- <zone type="Europe/Zurich">
- <exemplarCity draft="contributed">Zürich</exemplarCity>
- </zone>
- <zone type="Pacific/Easter">
- <exemplarCity draft="contributed">Veľkonočné ostrovy</exemplarCity>
- </zone>
- <zone type="Asia/Shanghai">
- <exemplarCity>Šanghaj</exemplarCity>
- </zone>
- <zone type="America/Costa_Rica">
- <exemplarCity draft="contributed">Kostarika</exemplarCity>
- </zone>
- <zone type="Atlantic/Cape_Verde">
- <exemplarCity draft="contributed">Kapverdy</exemplarCity>
- </zone>
- <zone type="Indian/Christmas">
- <exemplarCity draft="contributed">Vianočný ostrov</exemplarCity>
- </zone>
- <zone type="Asia/Nicosia">
- <exemplarCity draft="contributed">Nikózia</exemplarCity>
- </zone>
- <zone type="Europe/Prague">
- <exemplarCity draft="contributed">Praha</exemplarCity>
- </zone>
- <zone type="Europe/Busingen">
- <exemplarCity draft="contributed">Büsingen</exemplarCity>
- </zone>
- <zone type="Europe/Berlin">
- <exemplarCity draft="contributed">Berlín</exemplarCity>
- </zone>
- <zone type="Africa/Djibouti">
- <exemplarCity draft="contributed">Džibutsko</exemplarCity>
- </zone>
- <zone type="Europe/Copenhagen">
- <exemplarCity draft="contributed">Kodaň</exemplarCity>
- </zone>
- <zone type="America/Dominica">
- <exemplarCity draft="contributed">Dominika</exemplarCity>
- </zone>
- <zone type="Africa/Algiers">
- <exemplarCity draft="contributed">Alžír</exemplarCity>
- </zone>
- <zone type="Pacific/Galapagos">
- <exemplarCity>Galapágy</exemplarCity>
- </zone>
- <zone type="Africa/Cairo">
- <exemplarCity draft="contributed">Káhira</exemplarCity>
- </zone>
- <zone type="Africa/Asmera">
- <exemplarCity draft="contributed">Asmara</exemplarCity>
- </zone>
- <zone type="Atlantic/Canary">
- <exemplarCity>Kanárske ostrovy</exemplarCity>
- </zone>
- <zone type="Pacific/Fiji">
- <exemplarCity draft="contributed">Fidži</exemplarCity>
- </zone>
- <zone type="Pacific/Truk">
- <exemplarCity draft="contributed">Chuuk</exemplarCity>
- </zone>
- <zone type="Pacific/Ponape">
- <exemplarCity draft="contributed">Pohnpei</exemplarCity>
- </zone>
- <zone type="Atlantic/Faeroe">
- <exemplarCity draft="contributed">Faerské ostrovy</exemplarCity>
- </zone>
- <zone type="Europe/Paris">
- <exemplarCity draft="contributed">Paríž</exemplarCity>
- </zone>
- <zone type="Europe/London">
- <long>
- <daylight draft="contributed">Britský letný čas</daylight>
- </long>
- <exemplarCity>Londýn</exemplarCity>
- </zone>
- <zone type="Europe/Gibraltar">
- <exemplarCity draft="contributed">Gibraltár</exemplarCity>
- </zone>
- <zone type="America/Godthab">
- <exemplarCity draft="contributed">Nuuk</exemplarCity>
- </zone>
- <zone type="America/Scoresbysund">
- <exemplarCity draft="contributed">Ittoqqortoormiit</exemplarCity>
- </zone>
- <zone type="Europe/Athens">
- <exemplarCity draft="contributed">Atény</exemplarCity>
- </zone>
- <zone type="Atlantic/South_Georgia">
- <exemplarCity draft="contributed">Južná Georgia</exemplarCity>
- </zone>
- <zone type="Asia/Hong_Kong">
- <exemplarCity draft="contributed">Hongkong</exemplarCity>
- </zone>
- <zone type="Europe/Zagreb">
- <exemplarCity draft="contributed">Záhreb</exemplarCity>
- </zone>
- <zone type="Europe/Budapest">
- <exemplarCity draft="contributed">Budapešť</exemplarCity>
- </zone>
- <zone type="Europe/Dublin">
- <long>
- <daylight draft="contributed">Írsky letný čas</daylight>
- </long>
- </zone>
- <zone type="Asia/Jerusalem">
- <exemplarCity draft="contributed">Jeruzalem</exemplarCity>
- </zone>
- <zone type="Europe/Isle_of_Man">
- <exemplarCity draft="contributed">Ostrov Man</exemplarCity>
- </zone>
- <zone type="Asia/Calcutta">
- <exemplarCity draft="contributed">Kalkata</exemplarCity>
- </zone>
- <zone type="Asia/Baghdad">
- <exemplarCity draft="contributed">Bagdad</exemplarCity>
- </zone>
- <zone type="Asia/Tehran">
- <exemplarCity draft="contributed">Teherán</exemplarCity>
- </zone>
- <zone type="Europe/Rome">
- <exemplarCity draft="contributed">Rím</exemplarCity>
- </zone>
- <zone type="America/Jamaica">
- <exemplarCity draft="contributed">Jamajka</exemplarCity>
- </zone>
- <zone type="Asia/Bishkek">
- <exemplarCity draft="contributed">Biškek</exemplarCity>
- </zone>
- <zone type="Asia/Phnom_Penh">
- <exemplarCity draft="contributed">Phnom Pénh</exemplarCity>
- </zone>
- <zone type="America/St_Kitts">
- <exemplarCity draft="contributed">St. Kitts</exemplarCity>
- </zone>
- <zone type="Asia/Pyongyang">
- <exemplarCity draft="contributed">Pchjongjang</exemplarCity>
- </zone>
- <zone type="Asia/Seoul">
- <exemplarCity draft="contributed">Soul</exemplarCity>
- </zone>
- <zone type="Asia/Kuwait">
- <exemplarCity draft="contributed">Kuvajt</exemplarCity>
- </zone>
- <zone type="Asia/Almaty">
- <exemplarCity draft="contributed">Alma-Ata</exemplarCity>
- </zone>
- <zone type="Asia/Beirut">
- <exemplarCity draft="contributed">Bejrút</exemplarCity>
- </zone>
- <zone type="America/St_Lucia">
- <exemplarCity draft="contributed">Svätá Lucia</exemplarCity>
- </zone>
- <zone type="Asia/Colombo">
- <exemplarCity draft="contributed">Kolombo</exemplarCity>
- </zone>
- <zone type="Europe/Luxembourg">
- <exemplarCity draft="contributed">Luxembursko</exemplarCity>
- </zone>
- <zone type="Africa/Tripoli">
- <exemplarCity draft="contributed">Tripolis</exemplarCity>
- </zone>
- <zone type="Europe/Monaco">
- <exemplarCity draft="contributed">Monako</exemplarCity>
- </zone>
- <zone type="Europe/Chisinau">
- <exemplarCity draft="contributed">Kišiňov</exemplarCity>
- </zone>
- <zone type="Asia/Rangoon">
- <exemplarCity draft="contributed">Rangún</exemplarCity>
- </zone>
- <zone type="Asia/Ulaanbaatar">
- <exemplarCity>Ulanbátar</exemplarCity>
- </zone>
- <zone type="Asia/Macau">
- <exemplarCity draft="contributed">Macao</exemplarCity>
- </zone>
- <zone type="America/Martinique">
- <exemplarCity draft="contributed">Martinik</exemplarCity>
- </zone>
- <zone type="Indian/Mauritius">
- <exemplarCity draft="contributed">Maurícius</exemplarCity>
- </zone>
- <zone type="Indian/Maldives">
- <exemplarCity draft="contributed">Maldivy</exemplarCity>
- </zone>
- <zone type="Asia/Katmandu">
- <exemplarCity draft="contributed">Káthmandu</exemplarCity>
- </zone>
- <zone type="Asia/Muscat">
- <exemplarCity draft="contributed">Maskat</exemplarCity>
- </zone>
- <zone type="Asia/Karachi">
- <exemplarCity draft="contributed">Karáči</exemplarCity>
- </zone>
- <zone type="Europe/Warsaw">
- <exemplarCity draft="contributed">Varšava</exemplarCity>
- </zone>
- <zone type="America/Puerto_Rico">
- <exemplarCity draft="contributed">Portoriko</exemplarCity>
- </zone>
- <zone type="Atlantic/Azores">
- <exemplarCity>Azorské ostrovy</exemplarCity>
- </zone>
- <zone type="Europe/Lisbon">
- <exemplarCity>Lisabon</exemplarCity>
- </zone>
- <zone type="America/Asuncion">
- <exemplarCity draft="contributed">Asunción</exemplarCity>
- </zone>
- <zone type="Asia/Qatar">
- <exemplarCity draft="contributed">Katar</exemplarCity>
- </zone>
- <zone type="Indian/Reunion">
- <exemplarCity draft="contributed">Réunion</exemplarCity>
- </zone>
- <zone type="Europe/Bucharest">
- <exemplarCity draft="contributed">Bukurešť</exemplarCity>
- </zone>
- <zone type="Europe/Belgrade">
- <exemplarCity draft="contributed">Belehrad</exemplarCity>
- </zone>
- <zone type="Europe/Moscow">
- <exemplarCity>Moskva</exemplarCity>
- </zone>
- <zone type="Asia/Yekaterinburg">
- <exemplarCity>Jekaterinburg</exemplarCity>
- </zone>
- <zone type="Asia/Novokuznetsk">
- <exemplarCity draft="contributed">Novokuzneck</exemplarCity>
- </zone>
- <zone type="Asia/Krasnoyarsk">
- <exemplarCity>Krasnojarsko</exemplarCity>
- </zone>
- <zone type="Asia/Irkutsk">
- <exemplarCity>Irkutsko</exemplarCity>
- </zone>
- <zone type="Asia/Yakutsk">
- <exemplarCity>Jakutsko</exemplarCity>
- </zone>
- <zone type="Asia/Sakhalin">
- <exemplarCity>Sachalin</exemplarCity>
- </zone>
- <zone type="Asia/Ust-Nera">
- <exemplarCity draft="contributed">Usť-Nera</exemplarCity>
- </zone>
- <zone type="Asia/Kamchatka">
- <exemplarCity>Kamčatka</exemplarCity>
- </zone>
- <zone type="Africa/Khartoum">
- <exemplarCity draft="contributed">Chartúm</exemplarCity>
- </zone>
- <zone type="Europe/Stockholm">
- <exemplarCity draft="contributed">Štokholm</exemplarCity>
- </zone>
- <zone type="Asia/Singapore">
- <exemplarCity draft="contributed">Singapur</exemplarCity>
- </zone>
- <zone type="Atlantic/St_Helena">
- <exemplarCity draft="contributed">Sv. Helena</exemplarCity>
- </zone>
- <zone type="Europe/Ljubljana">
- <exemplarCity draft="contributed">Ľubľana</exemplarCity>
- </zone>
- <zone type="Europe/San_Marino">
- <exemplarCity draft="contributed">San Maríno</exemplarCity>
- </zone>
- <zone type="Africa/Mogadishu">
- <exemplarCity draft="contributed">Mogadišo</exemplarCity>
- </zone>
- <zone type="Africa/Sao_Tome">
- <exemplarCity draft="contributed">Svätý Tomáš</exemplarCity>
- </zone>
- <zone type="America/El_Salvador">
- <exemplarCity draft="contributed">Salvádor</exemplarCity>
- </zone>
- <zone type="America/Lower_Princes">
- <exemplarCity draft="contributed">Lower Prince's Quarter</exemplarCity>
- </zone>
- <zone type="Asia/Damascus">
- <exemplarCity draft="contributed">Damask</exemplarCity>
- </zone>
- <zone type="Asia/Dushanbe">
- <exemplarCity draft="contributed">Dušanbe</exemplarCity>
- </zone>
- <zone type="Asia/Ashgabat">
- <exemplarCity draft="contributed">Ašchabad</exemplarCity>
- </zone>
- <zone type="Asia/Taipei">
- <exemplarCity draft="contributed">Tchaj-pej</exemplarCity>
- </zone>
- <zone type="Europe/Uzhgorod">
- <exemplarCity>Užhorod</exemplarCity>
- </zone>
- <zone type="Europe/Kiev">
- <exemplarCity>Kyjev</exemplarCity>
- </zone>
- <zone type="Europe/Zaporozhye">
- <exemplarCity>Záporožie</exemplarCity>
- </zone>
- <zone type="America/Anchorage">
- <exemplarCity draft="contributed">Aljaška</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Beulah">
- <exemplarCity draft="contributed">Beulah, Severná Dakota</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/New_Salem">
- <exemplarCity draft="contributed">New Salem, Severná Dakota</exemplarCity>
- </zone>
- <zone type="America/North_Dakota/Center">
- <exemplarCity draft="contributed">Center, Severná Dakota</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vincennes">
- <exemplarCity draft="contributed">Vincennes, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Petersburg">
- <exemplarCity draft="contributed">Petersburg, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Tell_City">
- <exemplarCity draft="contributed">Tell City, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Knox">
- <exemplarCity draft="contributed">Knox, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Winamac">
- <exemplarCity draft="contributed">Winamac, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Marengo">
- <exemplarCity draft="contributed">Marengo, Indiana</exemplarCity>
- </zone>
- <zone type="America/Indiana/Vevay">
- <exemplarCity draft="contributed">Vevay, Indiana</exemplarCity>
- </zone>
- <zone type="America/Kentucky/Monticello">
- <exemplarCity draft="contributed">Monticello, Kentucky</exemplarCity>
- </zone>
- <zone type="Asia/Tashkent">
- <exemplarCity>Taškent</exemplarCity>
- </zone>
- <zone type="Europe/Vatican">
- <exemplarCity draft="contributed">Vatikán</exemplarCity>
- </zone>
- <zone type="America/St_Vincent">
- <exemplarCity draft="contributed">Sv. Vincent</exemplarCity>
- </zone>
- <zone type="America/St_Thomas">
- <exemplarCity draft="contributed">Sv. Tomáš</exemplarCity>
- </zone>
- <zone type="Asia/Saigon">
- <exemplarCity draft="contributed">Hočiminovo Mesto</exemplarCity>
- </zone>
- <metazone type="Afghanistan">
- <long>
- <standard draft="contributed">Afganský čas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Central">
- <long>
- <standard>Stredoafrický čas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Eastern">
- <long>
- <standard>Východoafrický čas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Southern">
- <long>
- <standard>Juhoafrický čas</standard>
- </long>
- </metazone>
- <metazone type="Africa_Western">
- <long>
- <generic>Západoafrický čas</generic>
- <standard>Západoafrický štandardný čas</standard>
- <daylight>Západoafrický letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Alaska">
- <long>
- <generic draft="contributed">Aljašský čas</generic>
- <standard draft="contributed">Aljašský štandardný čas</standard>
- <daylight draft="contributed">Aljašský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Amazon">
- <long>
- <generic draft="contributed">Amazonský čas</generic>
- <standard draft="contributed">Amazonský štandardný čas</standard>
- <daylight draft="contributed">Amazonský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="America_Central">
- <long>
- <generic draft="contributed">Centrálny čas</generic>
- <standard draft="contributed">Centrálny štandardný čas</standard>
- <daylight draft="contributed">Centrálny letný čas</daylight>
- </long>
- </metazone>
- <metazone type="America_Eastern">
- <long>
- <generic draft="contributed">Východný čas</generic>
- <standard draft="contributed">Východný štandardný čas</standard>
- <daylight draft="contributed">Východný letný čas</daylight>
- </long>
- </metazone>
- <metazone type="America_Mountain">
- <long>
- <generic draft="contributed">Horský čas</generic>
- <standard draft="contributed">Horský štandardný čas</standard>
- <daylight draft="contributed">Horský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="America_Pacific">
- <long>
- <generic draft="contributed">Tichomorský čas</generic>
- <standard draft="contributed">Tichomorský štandardný čas</standard>
- <daylight draft="contributed">Tichomorský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Anadyr">
- <long>
- <generic draft="contributed">Anadyrský čas</generic>
- <standard draft="contributed">Anadyrský štandardný čas</standard>
- <daylight draft="contributed">Anadyrský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Arabian">
- <long>
- <generic>Arabský čas</generic>
- <standard>Arabský štandardný čas</standard>
- <daylight>Arabský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Argentina">
- <long>
- <generic draft="contributed">Argentínsky čas</generic>
- <standard draft="contributed">Argentínsky štandardný čas</standard>
- <daylight draft="contributed">Argentínsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Argentina_Western">
- <long>
- <generic>Západoargentínsky čas</generic>
- <standard>Západoargentínsky štandardný čas</standard>
- <daylight>Západoargentínsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Armenia">
- <long>
- <generic draft="contributed">Arménsky čas</generic>
- <standard draft="contributed">Arménsky štandardný čas</standard>
- <daylight draft="contributed">Arménsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Atlantic">
- <long>
- <generic>Atlantický čas</generic>
- <standard>Atlantický štandardný čas</standard>
- <daylight>Atlantický letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Central">
- <long>
- <generic>Stredoaustrálsky čas</generic>
- <standard>Stredoaustrálsky štandardný čas</standard>
- <daylight>Stredoaustrálsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Australia_CentralWestern">
- <long>
- <generic>Stredozápadný austrálsky čas</generic>
- <standard>Stredozápadný austrálsky štandardný čas</standard>
- <daylight>Stredozápadný austrálsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Eastern">
- <long>
- <generic>Východoaustrálsky čas</generic>
- <standard>Východoaustrálsky štandardný čas</standard>
- <daylight>Východoaustrálsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Australia_Western">
- <long>
- <generic>Západoaustrálsky čas</generic>
- <standard>Západoaustrálsky štandardný čas</standard>
- <daylight>Západoaustrálsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Azerbaijan">
- <long>
- <generic draft="contributed">Azerbajdžanský čas</generic>
- <standard draft="contributed">Azerbajdžanský štandardný čas</standard>
- <daylight draft="contributed">Azerbajdžanský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Azores">
- <long>
- <generic draft="contributed">Azorský čas</generic>
- <standard draft="contributed">Azorský štandardný čas</standard>
- <daylight draft="contributed">Azorský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Bangladesh">
- <long>
- <generic draft="contributed">Bangladéšsky čas</generic>
- <standard draft="contributed">Bangladéšsky štandardný čas</standard>
- <daylight draft="contributed">Bangladéšsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Bhutan">
- <long>
- <standard draft="contributed">Bhutánsky čas</standard>
- </long>
- </metazone>
- <metazone type="Bolivia">
- <long>
- <standard draft="contributed">Bolívijský čas</standard>
- </long>
- </metazone>
- <metazone type="Brasilia">
- <long>
- <generic draft="contributed">Brazílsky čas</generic>
- <standard draft="contributed">Brazílsky štandardný čas</standard>
- <daylight draft="contributed">Brazílsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Brunei">
- <long>
- <standard draft="contributed">Brunejský čas</standard>
- </long>
- </metazone>
- <metazone type="Cape_Verde">
- <long>
- <generic draft="contributed">Kapverdský čas</generic>
- <standard draft="contributed">Kapverdský štandardný čas</standard>
- <daylight draft="contributed">Kapverdský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Chamorro">
- <long>
- <standard draft="contributed">Chamorrský štandardný čas</standard>
- </long>
- </metazone>
- <metazone type="Chatham">
- <long>
- <generic draft="contributed">Chathamský čas</generic>
- <standard draft="contributed">Chathamský štandardný čas</standard>
- <daylight draft="contributed">Chathamský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Chile">
- <long>
- <generic draft="contributed">Čilský čas</generic>
- <standard draft="contributed">Čilský štandardný čas</standard>
- <daylight draft="contributed">Čilský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="China">
- <long>
- <generic>Čínsky čas</generic>
- <standard>Čínsky štandardný čas</standard>
- <daylight>Čínsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Choibalsan">
- <long>
- <generic>Choibalsanský čas</generic>
- <standard>Čojbalsanský štandardný čas</standard>
- <daylight>Choibalsanský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Christmas">
- <long>
- <standard draft="contributed">Čas Vianočného ostrova</standard>
- </long>
- </metazone>
- <metazone type="Cocos">
- <long>
- <standard draft="contributed">Čas Kokosových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="Colombia">
- <long>
- <generic draft="contributed">Kolumbijský čas</generic>
- <standard draft="contributed">Kolumbijský štandardný čas</standard>
- <daylight draft="contributed">Kolumbijský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Cook">
- <long>
- <generic draft="contributed">Čas Cookových ostrovov</generic>
- <standard draft="contributed">Štandardný čas Cookových ostrovov</standard>
- <daylight draft="contributed">Letný čas Cookových ostrovov</daylight>
- </long>
- </metazone>
- <metazone type="Cuba">
- <long>
- <generic>Kubánsky čas</generic>
- <standard>Kubánsky štandardný čas</standard>
- <daylight>Kubánsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Davis">
- <long>
- <standard draft="contributed">Čas Davisovej stanice</standard>
- </long>
- </metazone>
- <metazone type="DumontDUrville">
- <long>
- <standard draft="contributed">Čas stanice Dumonta d'Urvillea</standard>
- </long>
- </metazone>
- <metazone type="East_Timor">
- <long>
- <standard draft="contributed">Východotimorský čas</standard>
- </long>
- </metazone>
- <metazone type="Easter">
- <long>
- <generic draft="contributed">Čas Veľkonočného ostrova</generic>
- <standard draft="contributed">Štandardný čas Veľkonočného ostrova</standard>
- <daylight draft="contributed">Letný čas Veľkonočného ostrova</daylight>
- </long>
- </metazone>
- <metazone type="Ecuador">
- <long>
- <standard draft="contributed">Ekvádorský čas</standard>
- </long>
- </metazone>
- <metazone type="Europe_Central">
- <long>
- <generic>Stredoeurópsky čas</generic>
- <standard>Stredoeurópsky štandardný čas</standard>
- <daylight>Stredoeurópsky letný čas</daylight>
- </long>
- <short>
- <generic>SEČ</generic>
- <standard>SEČ</standard>
- <daylight>SELČ</daylight>
- </short>
- </metazone>
- <metazone type="Europe_Eastern">
- <long>
- <generic>Východoeurópsky čas</generic>
- <standard>Východoeurópsky štandardný čas</standard>
- <daylight>Východoeurópsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Europe_Western">
- <long>
- <generic>Západoeurópsky čas</generic>
- <standard>Západoeurópsky štandardný čas</standard>
- <daylight>Západoeurópsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Falkland">
- <long>
- <generic draft="contributed">Čas Falklandských ostrovov</generic>
- <standard draft="contributed">Štandardný čas Falklandských ostrovov</standard>
- <daylight draft="contributed">Letný čas Falklandských ostrovov</daylight>
- </long>
- </metazone>
- <metazone type="Fiji">
- <long>
- <generic draft="contributed">Fidžijský čas</generic>
- <standard draft="contributed">Fidžijský štandardný čas</standard>
- <daylight draft="contributed">Fidžijský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="French_Guiana">
- <long>
- <standard draft="contributed">Čas Francúzskej Guyany</standard>
- </long>
- </metazone>
- <metazone type="French_Southern">
- <long>
- <standard draft="contributed">Francúzsky južný a antarktický čas</standard>
- </long>
- </metazone>
- <metazone type="Galapagos">
- <long>
- <standard draft="contributed">Galapágsky čas</standard>
- </long>
- </metazone>
- <metazone type="Gambier">
- <long>
- <standard draft="contributed">Gambierský čas</standard>
- </long>
- </metazone>
- <metazone type="Georgia">
- <long>
- <generic draft="contributed">Gruzínsky čas</generic>
- <standard draft="contributed">Gruzínsky štandardný čas</standard>
- <daylight draft="contributed">Gruzínsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Gilbert_Islands">
- <long>
- <standard draft="contributed">Čas Gilbertových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="GMT">
- <long>
- <standard>Greenwichský čas</standard>
- </long>
- </metazone>
- <metazone type="Greenland_Eastern">
- <long>
- <generic>Východogrónsky čas</generic>
- <standard>Východogrónsky štandardný čas</standard>
- <daylight>Východogrónsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Greenland_Western">
- <long>
- <generic>Západogrónsky čas</generic>
- <standard>Západogrónsky štandardný čas</standard>
- <daylight>Západogrónsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Gulf">
- <long>
- <standard draft="contributed">Štandardný čas Perzského zálivu</standard>
- </long>
- </metazone>
- <metazone type="Guyana">
- <long>
- <standard draft="contributed">Guyanský čas</standard>
- </long>
- </metazone>
- <metazone type="Hawaii_Aleutian">
- <long>
- <generic>Havajsko-aleutský čas</generic>
- <standard>Havajsko-aleutský štandardný čas</standard>
- <daylight>Havajsko-aleutský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Hong_Kong">
- <long>
- <generic draft="contributed">Hongkongský čas</generic>
- <standard draft="contributed">Hongkongský štandardný čas</standard>
- <daylight draft="contributed">Hongkongský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Hovd">
- <long>
- <generic>Chovdský čas</generic>
- <standard>Chovdský štandardný čas</standard>
- <daylight>Chovdský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="India">
- <long>
- <standard>Indický čas</standard>
- </long>
- </metazone>
- <metazone type="Indian_Ocean">
- <long>
- <standard draft="contributed">Čas Indického oceánu</standard>
- </long>
- </metazone>
- <metazone type="Indochina">
- <long>
- <standard>Indočínsky čas</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Central">
- <long>
- <standard>Stredoindonézsky čas</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Eastern">
- <long>
- <standard>Východoindonézsky čas</standard>
- </long>
- </metazone>
- <metazone type="Indonesia_Western">
- <long>
- <standard>Západoindonézsky čas</standard>
- </long>
- </metazone>
- <metazone type="Iran">
- <long>
- <generic draft="contributed">Iránsky čas</generic>
- <standard draft="contributed">Iránsky štandardný čas</standard>
- <daylight draft="contributed">Iránsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Irkutsk">
- <long>
- <generic draft="contributed">Irkutský čas</generic>
- <standard draft="contributed">Irkutský štandardný čas</standard>
- <daylight draft="contributed">Irkutský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Israel">
- <long>
- <generic>Izraelský čas</generic>
- <standard>Izraelský štandardný čas</standard>
- <daylight>Izraelský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Japan">
- <long>
- <generic>Japonský čas</generic>
- <standard>Japonský štandardný čas</standard>
- <daylight>Japonský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Kamchatka">
- <long>
- <generic draft="contributed">Petropavlovsk-Kamčatský čas</generic>
- <standard draft="contributed">Petropavlovsk-Kamčatský štandardný čas</standard>
- <daylight draft="contributed">Petropavlovsk-Kamčatskijský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Eastern">
- <long>
- <standard draft="contributed">Východokazašský čas</standard>
- </long>
- </metazone>
- <metazone type="Kazakhstan_Western">
- <long>
- <standard draft="contributed">Západokazašský čas</standard>
- </long>
- </metazone>
- <metazone type="Korea">
- <long>
- <generic>Kórejský čas</generic>
- <standard>Kórejský štandardný čas</standard>
- <daylight>Kórejský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Kosrae">
- <long>
- <standard draft="contributed">Kosraeský čas</standard>
- </long>
- </metazone>
- <metazone type="Krasnoyarsk">
- <long>
- <generic draft="contributed">Krasnojarský čas</generic>
- <standard draft="contributed">Krasnojarský štandardný čas</standard>
- <daylight draft="contributed">Krasnojarský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Kyrgystan">
- <long>
- <standard draft="contributed">Kirgizský čas</standard>
- </long>
- </metazone>
- <metazone type="Line_Islands">
- <long>
- <standard draft="contributed">Čas Rovníkových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="Lord_Howe">
- <long>
- <generic draft="contributed">Čas ostrova lorda Howa</generic>
- <standard draft="contributed">Štandardný čas ostrova lorda Howa</standard>
- <daylight draft="contributed">Letný čas ostrova lorda Howa</daylight>
- </long>
- </metazone>
- <metazone type="Macquarie">
- <long>
- <standard draft="contributed">Čas ostrova Macquarie</standard>
- </long>
- </metazone>
- <metazone type="Magadan">
- <long>
- <generic draft="contributed">Magadanský čas</generic>
- <standard draft="contributed">Magadanský štandardný čas</standard>
- <daylight draft="contributed">Magadanský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Malaysia">
- <long>
- <standard draft="contributed">Malajský čas</standard>
- </long>
- </metazone>
- <metazone type="Maldives">
- <long>
- <standard draft="contributed">Maledivský čas</standard>
- </long>
- </metazone>
- <metazone type="Marquesas">
- <long>
- <standard draft="contributed">Markézsky čas</standard>
- </long>
- </metazone>
- <metazone type="Marshall_Islands">
- <long>
- <standard draft="contributed">Čas Marshallových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="Mauritius">
- <long>
- <generic draft="contributed">Maurícijský čas</generic>
- <standard draft="contributed">Maurícijský štandardný čas</standard>
- <daylight draft="contributed">Maurícijský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Mawson">
- <long>
- <standard draft="contributed">Čas Mawsonovej stanice</standard>
- </long>
- </metazone>
- <metazone type="Mongolia">
- <long>
- <generic draft="contributed">Ulanbátarský čas</generic>
- <standard draft="contributed">Ulanbátarský štandardný čas</standard>
- <daylight draft="contributed">Ulanbátarský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Moscow">
- <long>
- <generic>Moskovský čas</generic>
- <standard>Moskovský štandardný čas</standard>
- <daylight>Moskovský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Myanmar">
- <long>
- <standard draft="contributed">Mjanmarský čas</standard>
- </long>
- </metazone>
- <metazone type="Nauru">
- <long>
- <standard draft="contributed">Čas ostrova Nauru</standard>
- </long>
- </metazone>
- <metazone type="Nepal">
- <long>
- <standard draft="contributed">Nepálsky čas</standard>
- </long>
- </metazone>
- <metazone type="New_Caledonia">
- <long>
- <generic draft="contributed">Novokaledónsky čas</generic>
- <standard draft="contributed">Novokaledónsky štandardný čas</standard>
- <daylight draft="contributed">Novokaledónsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="New_Zealand">
- <long>
- <generic draft="contributed">Novozélandský čas</generic>
- <standard draft="contributed">Novozélandský štandardný čas</standard>
- <daylight draft="contributed">Novozélandský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Newfoundland">
- <long>
- <generic draft="contributed">Newfoundlandský čas</generic>
- <standard draft="contributed">Newfoundlandský štandardný čas</standard>
- <daylight draft="contributed">Newfoundlandský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Niue">
- <long>
- <standard draft="contributed">Čas ostrova Niue</standard>
- </long>
- </metazone>
- <metazone type="Norfolk">
- <long>
- <standard draft="contributed">Čas Norfolkských ostrovov</standard>
- </long>
- </metazone>
- <metazone type="Noronha">
- <long>
- <generic>Čas ostrova Fernando de Noronha</generic>
- <standard>Štandardný čas ostrova Fernando de Noronha</standard>
- <daylight>Letný čas ostrovov Fernanda de Noronha</daylight>
- </long>
- </metazone>
- <metazone type="Novosibirsk">
- <long>
- <generic>Novosibírsky čas</generic>
- <standard>Novosibirský štandardný čas</standard>
- <daylight>Novosibírsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Omsk">
- <long>
- <generic draft="contributed">Omský čas</generic>
- <standard draft="contributed">Omský štandardný čas</standard>
- <daylight draft="contributed">Omský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Pakistan">
- <long>
- <generic draft="contributed">Pakistanský čas</generic>
- <standard draft="contributed">Pakistanský štandardný čas</standard>
- <daylight draft="contributed">Pakistanský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Palau">
- <long>
- <standard draft="contributed">Palauský čas</standard>
- </long>
- </metazone>
- <metazone type="Papua_New_Guinea">
- <long>
- <standard draft="contributed">Čas Papuy-Novej Guiney</standard>
- </long>
- </metazone>
- <metazone type="Paraguay">
- <long>
- <generic draft="contributed">Paraguajský čas</generic>
- <standard draft="contributed">Paraguajský štandardný čas</standard>
- <daylight draft="contributed">Paraguajský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Peru">
- <long>
- <generic draft="contributed">Peruánsky čas</generic>
- <standard draft="contributed">Peruánsky štandardný čas</standard>
- <daylight draft="contributed">Peruánsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Philippines">
- <long>
- <generic draft="contributed">Filipínsky čas</generic>
- <standard draft="contributed">Filipínsky štandardný čas</standard>
- <daylight draft="contributed">Filipínsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Phoenix_Islands">
- <long>
- <standard draft="contributed">Čas Fénixových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="Pierre_Miquelon">
- <long>
- <generic>Čas ostrovov Saint-Pierre a Miquelon</generic>
- <standard>Štandardný čas ostrovov Saint-Pierre a Miquelon</standard>
- <daylight>Letný čas ostrovov Saint-Pierre a Miquelon</daylight>
- </long>
- </metazone>
- <metazone type="Pitcairn">
- <long>
- <standard draft="contributed">Čas Pitcairnovho ostrova</standard>
- </long>
- </metazone>
- <metazone type="Ponape">
- <long>
- <standard draft="contributed">Ponapský čas</standard>
- </long>
- </metazone>
- <metazone type="Reunion">
- <long>
- <standard draft="contributed">Réunionský čas</standard>
- </long>
- </metazone>
- <metazone type="Rothera">
- <long>
- <standard draft="contributed">Čas Rotherovej stanice</standard>
- </long>
- </metazone>
- <metazone type="Sakhalin">
- <long>
- <generic draft="contributed">Sachalinský čas</generic>
- <standard draft="contributed">Sachalinský štandardný čas</standard>
- <daylight draft="contributed">Sachalinský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Samara">
- <long>
- <generic draft="contributed">Samarský čas</generic>
- <standard draft="contributed">Samarský štandardný čas</standard>
- <daylight draft="contributed">Samarský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Samoa">
- <long>
- <generic draft="contributed">Samojský čas</generic>
- <standard draft="contributed">Samojský štandardný čas</standard>
- <daylight draft="contributed">Samojský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Seychelles">
- <long>
- <standard draft="contributed">Seychelský čas</standard>
- </long>
- </metazone>
- <metazone type="Singapore">
- <long>
- <standard draft="contributed">Singapurský štandardný čas</standard>
- </long>
- </metazone>
- <metazone type="Solomon">
- <long>
- <standard draft="contributed">Čas Šalamúnových ostrovov</standard>
- </long>
- </metazone>
- <metazone type="South_Georgia">
- <long>
- <standard draft="contributed">Čas Južnej Georgie</standard>
- </long>
- </metazone>
- <metazone type="Suriname">
- <long>
- <standard>Surinamský čas</standard>
- </long>
- </metazone>
- <metazone type="Syowa">
- <long>
- <standard draft="contributed">Čas stanice Šówa</standard>
- </long>
- </metazone>
- <metazone type="Tahiti">
- <long>
- <standard draft="contributed">Tahitský čas</standard>
- </long>
- </metazone>
- <metazone type="Taipei">
- <long>
- <generic draft="contributed">Tchajpejský čas</generic>
- <standard draft="contributed">Tchajpejský štandardný čas</standard>
- <daylight draft="contributed">Tchajpejský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Tajikistan">
- <long>
- <standard draft="contributed">Tadžický čas</standard>
- </long>
- </metazone>
- <metazone type="Tokelau">
- <long>
- <standard draft="contributed">Tokelauský čas</standard>
- </long>
- </metazone>
- <metazone type="Tonga">
- <long>
- <generic draft="contributed">Tonžský čas</generic>
- <standard draft="contributed">Tonžský štandardný čas</standard>
- <daylight draft="contributed">Tonžský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Truk">
- <long>
- <standard draft="contributed">Chuukský čas</standard>
- </long>
- </metazone>
- <metazone type="Turkmenistan">
- <long>
- <generic draft="contributed">Turkménsky čas</generic>
- <standard draft="contributed">Turkménsky štandardný čas</standard>
- <daylight draft="contributed">Turkménsky letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Tuvalu">
- <long>
- <standard draft="contributed">Tuvalský čas</standard>
- </long>
- </metazone>
- <metazone type="Uruguay">
- <long>
- <generic draft="contributed">Uruguajský čas</generic>
- <standard draft="contributed">Uruguajský štandardný čas</standard>
- <daylight draft="contributed">Uruguajský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Uzbekistan">
- <long>
- <generic draft="contributed">Uzbecký čas</generic>
- <standard draft="contributed">Uzbecký štandardný čas</standard>
- <daylight draft="contributed">Uzbecký letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Vanuatu">
- <long>
- <generic draft="contributed">Vanuatský čas</generic>
- <standard draft="contributed">Vanuatský štandardný čas</standard>
- <daylight draft="contributed">Vanuatský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Venezuela">
- <long>
- <standard draft="contributed">Venezuelský čas</standard>
- </long>
- </metazone>
- <metazone type="Vladivostok">
- <long>
- <generic draft="contributed">Vladivostocký čas</generic>
- <standard draft="contributed">Vladivostocký štandardný čas</standard>
- <daylight draft="contributed">Vladivostocký letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Volgograd">
- <long>
- <generic draft="contributed">Volgogradský čas</generic>
- <standard draft="contributed">Volgogradský štandardný čas</standard>
- <daylight draft="contributed">Volgogradský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Vostok">
- <long>
- <standard draft="contributed">Čas stanice Vostok</standard>
- </long>
- </metazone>
- <metazone type="Wake">
- <long>
- <standard draft="contributed">Čas ostrova Wake</standard>
- </long>
- </metazone>
- <metazone type="Wallis">
- <long>
- <standard draft="contributed">Čas ostrovov Wallis a Futuna</standard>
- </long>
- </metazone>
- <metazone type="Yakutsk">
- <long>
- <generic draft="contributed">Jakutský čas</generic>
- <standard draft="contributed">Jakutský štandardný čas</standard>
- <daylight draft="contributed">Jakutský letný čas</daylight>
- </long>
- </metazone>
- <metazone type="Yekaterinburg">
- <long>
- <generic draft="contributed">Jekaterinburgský čas</generic>
- <standard draft="contributed">Jekaterinburgský štandardný čas</standard>
- <daylight draft="contributed">Jekaterinburský letný čas</daylight>
- </long>
- </metazone>
- </timeZoneNames>
- </dates>
- <numbers>
- <symbols numberSystem="latn">
- <decimal>,</decimal>
- <group> </group>
- <list>;</list>
- <percentSign>%</percentSign>
- <plusSign>+</plusSign>
- <minusSign>-</minusSign>
- <exponential>E</exponential>
- <superscriptingExponent draft="contributed">×</superscriptingExponent>
- <perMille>‰</perMille>
- <infinity>∞</infinity>
- <nan>NaN</nan>
- </symbols>
- <decimalFormats numberSystem="latn">
- <decimalFormatLength>
- <decimalFormat>
- <pattern>#,##0.###</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="long">
- <decimalFormat>
- <pattern type="1000" count="one">0 tisíc</pattern>
- <pattern type="1000" count="few">0 tisíc</pattern>
- <pattern type="1000" count="many">0 tisíc</pattern>
- <pattern type="1000" count="other">0 tisíc</pattern>
- <pattern type="10000" count="one">00 tisíc</pattern>
- <pattern type="10000" count="few">00 tisíc</pattern>
- <pattern type="10000" count="many">00 tisíc</pattern>
- <pattern type="10000" count="other">00 tisíc</pattern>
- <pattern type="100000" count="one">000 tisíc</pattern>
- <pattern type="100000" count="few">000 tisíc</pattern>
- <pattern type="100000" count="many">000 tisíc</pattern>
- <pattern type="100000" count="other">000 tisíc</pattern>
- <pattern type="1000000" count="one">0 milión</pattern>
- <pattern type="1000000" count="few">0 milióny</pattern>
- <pattern type="1000000" count="many">0 miliónov</pattern>
- <pattern type="1000000" count="other">0 miliónov</pattern>
- <pattern type="10000000" count="one">00 milión</pattern>
- <pattern type="10000000" count="few">00 milióny</pattern>
- <pattern type="10000000" count="many">00 miliónov</pattern>
- <pattern type="10000000" count="other">00 miliónov</pattern>
- <pattern type="100000000" count="one">000 milión</pattern>
- <pattern type="100000000" count="few">000 milióny</pattern>
- <pattern type="100000000" count="many">000 miliónov</pattern>
- <pattern type="100000000" count="other">000 miliónov</pattern>
- <pattern type="1000000000" count="one">0 miliarda</pattern>
- <pattern type="1000000000" count="few">0 miliardy</pattern>
- <pattern type="1000000000" count="many">0 miliard</pattern>
- <pattern type="1000000000" count="other">0 miliard</pattern>
- <pattern type="10000000000" count="one">00 miliarda</pattern>
- <pattern type="10000000000" count="few">00 miliárdy</pattern>
- <pattern type="10000000000" count="many">00 miliárd</pattern>
- <pattern type="10000000000" count="other">00 miliárd</pattern>
- <pattern type="100000000000" count="one">000 miliarda</pattern>
- <pattern type="100000000000" count="few">000 miliárdy</pattern>
- <pattern type="100000000000" count="many">000 miliárd</pattern>
- <pattern type="100000000000" count="other">000 miliárd</pattern>
- <pattern type="1000000000000" count="one">0 bilión</pattern>
- <pattern type="1000000000000" count="few">0 bilióny</pattern>
- <pattern type="1000000000000" count="many">0 biliónov</pattern>
- <pattern type="1000000000000" count="other">0 biliónov</pattern>
- <pattern type="10000000000000" count="one">00 bilión</pattern>
- <pattern type="10000000000000" count="few">00 bilióny</pattern>
- <pattern type="10000000000000" count="many">00 biliónov</pattern>
- <pattern type="10000000000000" count="other">00 biliónov</pattern>
- <pattern type="100000000000000" count="one">000 bilión</pattern>
- <pattern type="100000000000000" count="few">000 bilióny</pattern>
- <pattern type="100000000000000" count="many">000 biliónov</pattern>
- <pattern type="100000000000000" count="other">000 biliónov</pattern>
- </decimalFormat>
- </decimalFormatLength>
- <decimalFormatLength type="short">
- <decimalFormat>
- <pattern type="1000" count="one">0 tis'.'</pattern>
- <pattern type="1000" count="few">0 tis'.'</pattern>
- <pattern type="1000" count="many">0 tis'.'</pattern>
- <pattern type="1000" count="other">0 tis'.'</pattern>
- <pattern type="10000" count="one">00 tis'.'</pattern>
- <pattern type="10000" count="few">00 tis'.'</pattern>
- <pattern type="10000" count="many">00 tis'.'</pattern>
- <pattern type="10000" count="other">00 tis'.'</pattern>
- <pattern type="100000" count="one">000 tis'.'</pattern>
- <pattern type="100000" count="few">000 tis'.'</pattern>
- <pattern type="100000" count="many">000 tis'.'</pattern>
- <pattern type="100000" count="other">000 tis'.'</pattern>
- <pattern type="1000000" count="one">0 mil'.'</pattern>
- <pattern type="1000000" count="few">0 mil'.'</pattern>
- <pattern type="1000000" count="many">0 mil'.'</pattern>
- <pattern type="1000000" count="other">0 mil'.'</pattern>
- <pattern type="10000000" count="one">00 mil'.'</pattern>
- <pattern type="10000000" count="few">00 mil'.'</pattern>
- <pattern type="10000000" count="many">00 mil'.'</pattern>
- <pattern type="10000000" count="other">00 mil'.'</pattern>
- <pattern type="100000000" count="one">000 mil'.'</pattern>
- <pattern type="100000000" count="few">000 mil'.'</pattern>
- <pattern type="100000000" count="many">000 mil'.'</pattern>
- <pattern type="100000000" count="other">000 mil'.'</pattern>
- <pattern type="1000000000" count="one">0 mld'.'</pattern>
- <pattern type="1000000000" count="few">0 mld'.'</pattern>
- <pattern type="1000000000" count="many">0 mld'.'</pattern>
- <pattern type="1000000000" count="other">0 mld'.'</pattern>
- <pattern type="10000000000" count="one">00 mld'.'</pattern>
- <pattern type="10000000000" count="few">00 mld'.'</pattern>
- <pattern type="10000000000" count="many">00 mld'.'</pattern>
- <pattern type="10000000000" count="other">00 mld'.'</pattern>
- <pattern type="100000000000" count="one">000 mld'.'</pattern>
- <pattern type="100000000000" count="few">000 mld'.'</pattern>
- <pattern type="100000000000" count="many">000 mld'.'</pattern>
- <pattern type="100000000000" count="other">000 mld'.'</pattern>
- <pattern type="1000000000000" count="one">0 bil'.'</pattern>
- <pattern type="1000000000000" count="few">0 bil'.'</pattern>
- <pattern type="1000000000000" count="many">0 bil'.'</pattern>
- <pattern type="1000000000000" count="other">0 bil'.'</pattern>
- <pattern type="10000000000000" count="one">00 bil'.'</pattern>
- <pattern type="10000000000000" count="few">00 bil'.'</pattern>
- <pattern type="10000000000000" count="many">00 bil'.'</pattern>
- <pattern type="10000000000000" count="other">00 bil'.'</pattern>
- <pattern type="100000000000000" count="one">000 bil'.'</pattern>
- <pattern type="100000000000000" count="few">000 bil'.'</pattern>
- <pattern type="100000000000000" count="many">000 bil'.'</pattern>
- <pattern type="100000000000000" count="other">000 bil'.'</pattern>
- </decimalFormat>
- </decimalFormatLength>
- </decimalFormats>
- <scientificFormats numberSystem="latn">
- <scientificFormatLength>
- <scientificFormat>
- <pattern>#E0</pattern>
- </scientificFormat>
- </scientificFormatLength>
- </scientificFormats>
- <percentFormats numberSystem="latn">
- <percentFormatLength>
- <percentFormat>
- <pattern>#,##0 %</pattern>
- </percentFormat>
- </percentFormatLength>
- </percentFormats>
- <currencyFormats numberSystem="latn">
- <currencyFormatLength>
- <currencyFormat type="standard">
- <pattern>#,##0.00 ¤</pattern>
- </currencyFormat>
- <currencyFormat type="accounting">
- <pattern draft="contributed">#,##0.00 ¤;(#,##0.00 ¤)</pattern>
- </currencyFormat>
- </currencyFormatLength>
- <unitPattern count="one">{0} {1}</unitPattern>
- <unitPattern count="few">{0} {1}</unitPattern>
- <unitPattern count="many">{0} {1}</unitPattern>
- <unitPattern count="other">{0} {1}</unitPattern>
- </currencyFormats>
- <currencies>
- <currency type="ADP">
- <displayName>Andorská peseta</displayName>
- </currency>
- <currency type="AED">
- <displayName>SAE dirham</displayName>
- <displayName count="one">SAE dirham</displayName>
- <displayName count="few">SAE dirhamy</displayName>
- <displayName count="many">SAE dirhamov</displayName>
- <displayName count="other">SAE dirhamov</displayName>
- </currency>
- <currency type="AFN">
- <displayName>Afganský afgání</displayName>
- <displayName count="one">afganský afgání</displayName>
- <displayName count="few">afganské afgání</displayName>
- <displayName count="many">afganského afgání</displayName>
- <displayName count="other">afganských afgání</displayName>
- </currency>
- <currency type="ALL">
- <displayName>Albánsky lek</displayName>
- </currency>
- <currency type="AMD">
- <displayName>Armenský dram</displayName>
- </currency>
- <currency type="ANG">
- <displayName>Antilský gulden</displayName>
- <displayName count="one">antilský gulden</displayName>
- <displayName count="few">antilské guldeny</displayName>
- <displayName count="many">antilského guldena</displayName>
- <displayName count="other">antilských guldenov</displayName>
- </currency>
- <currency type="AOA">
- <displayName>Angolská kwanza</displayName>
- </currency>
- <currency type="AOK">
- <displayName>Angolská kwanza (1977–1990)</displayName>
- </currency>
- <currency type="AON">
- <displayName>Angolská nová kwanza (1990–2000)</displayName>
- </currency>
- <currency type="AOR">
- <displayName>Angolská kwanza Reajustado (1995–1999)</displayName>
- </currency>
- <currency type="ARA">
- <displayName>Argentinský austral</displayName>
- </currency>
- <currency type="ARP">
- <displayName>Argentinské peso (1983–1985)</displayName>
- </currency>
- <currency type="ARS">
- <displayName>Argentinské peso</displayName>
- </currency>
- <currency type="ATS">
- <displayName>Rakúsky šiling</displayName>
- </currency>
- <currency type="AUD">
- <displayName>Austrálsky dolár</displayName>
- <displayName count="one">austrálsky dolár</displayName>
- <displayName count="few">austrálske doláre</displayName>
- <displayName count="many">austrálskeho dolára</displayName>
- <displayName count="other">austrálskych dolárov</displayName>
- <symbol draft="contributed">AUD</symbol>
- </currency>
- <currency type="AWG">
- <displayName>Arubský guilder</displayName>
- </currency>
- <currency type="AZM">
- <displayName>Azerbajdžanský manat (1993–2006)</displayName>
- <displayName count="one">azerbajdžanský manat (1993–2006)</displayName>
- <displayName count="few">azerbajdžanské manaty (1993–2006)</displayName>
- <displayName count="many">azerbajdžanského manatu (1993–2006)</displayName>
- <displayName count="other">azerbajdžanských manatov (1993–2006)</displayName>
- </currency>
- <currency type="AZN">
- <displayName>Azerbajdžanský manat</displayName>
- <displayName count="one">azerbajdžanský manat</displayName>
- <displayName count="few">azerbajdžanské manaty</displayName>
- <displayName count="many">azerbajdžanského manatu</displayName>
- <displayName count="other">azerbajdžanských manatov</displayName>
- </currency>
- <currency type="BAD">
- <displayName>Bosnianský dinár</displayName>
- </currency>
- <currency type="BAM">
- <displayName>Bosnianska konvertibilná marka</displayName>
- <displayName count="one">bosnianska konvertibilná marka</displayName>
- <displayName count="few">bosnianske konvertibilné marky</displayName>
- <displayName count="many">bosnianskej konvertibilnej marky</displayName>
- <displayName count="other">bosnianskych konvertibilných mariek</displayName>
- </currency>
- <currency type="BBD">
- <displayName>Barbadoský dolár</displayName>
- <displayName count="one">barbadoský dolár</displayName>
- <displayName count="few">barbadoské doláre</displayName>
- <displayName count="many">barbadoského dolára</displayName>
- <displayName count="other">barbadoských dolárov</displayName>
- </currency>
- <currency type="BDT">
- <displayName>Bangladéšska taka</displayName>
- </currency>
- <currency type="BEC">
- <displayName>Belgický frank (konvertibilný)</displayName>
- </currency>
- <currency type="BEF">
- <displayName>Belgický frank</displayName>
- </currency>
- <currency type="BEL">
- <displayName>Belgický frank (finančný)</displayName>
- </currency>
- <currency type="BGL">
- <displayName>Bulharský leva</displayName>
- </currency>
- <currency type="BGN">
- <displayName>Bulharský lev</displayName>
- <displayName count="one">bulharský lev</displayName>
- <displayName count="few">bulharské leva</displayName>
- <displayName count="many">bulharského leva</displayName>
- <displayName count="other">bulharských leva</displayName>
- </currency>
- <currency type="BHD">
- <displayName>Bahrajnský dinár</displayName>
- <displayName count="one">bahrajnský dinár</displayName>
- <displayName count="few">bahrajnské dináre</displayName>
- <displayName count="many">bahrajnského dinára</displayName>
- <displayName count="other">bahrajnských dinárov</displayName>
- </currency>
- <currency type="BIF">
- <displayName>Burundský frank</displayName>
- </currency>
- <currency type="BMD">
- <displayName>Bermudský dolár</displayName>
- </currency>
- <currency type="BND">
- <displayName>Brunejský dolár</displayName>
- <displayName count="one">brunejský dolár</displayName>
- <displayName count="few">brunejské doláre</displayName>
- <displayName count="many">brunejského dolára</displayName>
- <displayName count="other">brunejských dolárov</displayName>
- </currency>
- <currency type="BOB">
- <displayName>Bolívijské boliviano</displayName>
- <displayName count="one">bolívijské boliviano</displayName>
- <displayName count="few">bolívijské boliviany</displayName>
- <displayName count="many">bolívijského boliviana</displayName>
- <displayName count="other">bolívijských bolivianov</displayName>
- </currency>
- <currency type="BOP">
- <displayName>Bolivíjske peso</displayName>
- </currency>
- <currency type="BOV">
- <displayName>Bolivíjske mvdol</displayName>
- </currency>
- <currency type="BRB">
- <displayName>Bolivíjske Cruzeiro Novo (1967–1986)</displayName>
- </currency>
- <currency type="BRC">
- <displayName>Bolivíjske cruzado</displayName>
- </currency>
- <currency type="BRE">
- <displayName>Bolivíjske cruzeiro (1990–1993)</displayName>
- </currency>
- <currency type="BRL">
- <displayName>Brazílsky real</displayName>
- <displayName count="one">brazílsky real</displayName>
- <displayName count="few">brazílske realy</displayName>
- <displayName count="many">brazílskeho realu</displayName>
- <displayName count="other">brazílskych realov</displayName>
- <symbol draft="contributed">BRL</symbol>
- </currency>
- <currency type="BRN">
- <displayName>Brazílske Cruzado Novo</displayName>
- </currency>
- <currency type="BRR">
- <displayName>Brazílske cruzeiro</displayName>
- </currency>
- <currency type="BSD">
- <displayName>Bahamský dolár</displayName>
- </currency>
- <currency type="BTN">
- <displayName>Bhutánsky ngultrum</displayName>
- <displayName count="one">bhutánsky ngultrum</displayName>
- <displayName count="few">bhutánske ngultrumy</displayName>
- <displayName count="many">bhutánskeho ngultrumu</displayName>
- <displayName count="other">bhutánskych ngultrumov</displayName>
- </currency>
- <currency type="BUK">
- <displayName>Burmese Kyat</displayName>
- </currency>
- <currency type="BWP">
- <displayName>Botswanská pula</displayName>
- <displayName count="one">botswanská pula</displayName>
- <displayName count="few">botswanské puly</displayName>
- <displayName count="many">botswanskej puly</displayName>
- <displayName count="other">botswanských púl</displayName>
- </currency>
- <currency type="BYB">
- <displayName>Bieloruský nový rubeľ (1994–1999)</displayName>
- <displayName count="one">bieloruský nový rubeľ (1994–1999)</displayName>
- <displayName count="few">bieloruské nové ruble (1994–1999)</displayName>
- <displayName count="many">bieloruského nového rubľa (1994–1999)</displayName>
- <displayName count="other">bieloruských nových rubľov (1994–1999)</displayName>
- </currency>
- <currency type="BYR">
- <displayName>Bieloruský rubeľ</displayName>
- <displayName count="one">bieloruský rubeľ</displayName>
- <displayName count="few">bieloruské ruble</displayName>
- <displayName count="many">bieloruského rubľa</displayName>
- <displayName count="other">bieloruských rubľov</displayName>
- </currency>
- <currency type="BZD">
- <displayName>Belizský dolár</displayName>
- <displayName count="one">belizský dolár</displayName>
- <displayName count="few">belizské doláre</displayName>
- <displayName count="many">belizských dolárov</displayName>
- <displayName count="other">belizských dolárov</displayName>
- </currency>
- <currency type="CAD">
- <displayName>Kanadský dolár</displayName>
- <displayName count="one">kanadský dolár</displayName>
- <displayName count="few">kanadské doláre</displayName>
- <displayName count="many">kanadského dolára</displayName>
- <displayName count="other">kanadských dolárov</displayName>
- <symbol draft="contributed">CAD</symbol>
- </currency>
- <currency type="CDF">
- <displayName>Konžský frank</displayName>
- <displayName count="one">konžský frank</displayName>
- <displayName count="few">konžské franky</displayName>
- <displayName count="many">konžského franku</displayName>
- <displayName count="other">konžských frankov</displayName>
- </currency>
- <currency type="CHF">
- <displayName>Švajčiarsky frank</displayName>
- <displayName count="one">švajčiarsky frank</displayName>
- <displayName count="few">švajčiarske franky</displayName>
- <displayName count="many">švajčiarskeho franku</displayName>
- <displayName count="other">švajčiarskych frankov</displayName>
- </currency>
- <currency type="CLF">
- <displayName>Čílske Unidades de Fomento</displayName>
- </currency>
- <currency type="CLP">
- <displayName>Čílske peso</displayName>
- </currency>
- <currency type="CNY">
- <displayName>Čínsky jüan</displayName>
- <displayName count="one">čínsky jüan</displayName>
- <displayName count="few">čínske jüany</displayName>
- <displayName count="many">čínskeho jüana</displayName>
- <displayName count="other">čínskych jüanov</displayName>
- <symbol draft="contributed">CNY</symbol>
- </currency>
- <currency type="COP">
- <displayName>Kolumbijské peso</displayName>
- <displayName count="one">kolumbijské peso</displayName>
- <displayName count="few">kolumbijské pesos</displayName>
- <displayName count="many">kolumbijského pesa</displayName>
- <displayName count="other">kolumbijských pesos</displayName>
- </currency>
- <currency type="CRC">
- <displayName>Kostarický colón</displayName>
- <displayName count="one">kostarický colón</displayName>
- <displayName count="few">kostarické colóny</displayName>
- <displayName count="many">kostarického colónu</displayName>
- <displayName count="other">kostarických colónov</displayName>
- </currency>
- <currency type="CSK">
- <displayName>Československá koruna</displayName>
- </currency>
- <currency type="CUC">
- <displayName>Kubánske konvertibilné peso</displayName>
- <displayName count="one">kubánske konvertibilné peso</displayName>
- <displayName count="few">kubánske konvertibilné pesos</displayName>
- <displayName count="many">kubánskeho konvertibilného pesa</displayName>
- <displayName count="other">kubánskych konvertibilných pesos</displayName>
- </currency>
- <currency type="CUP">
- <displayName>Kubánske peso</displayName>
- <displayName count="one">kubánske peso</displayName>
- <displayName count="few">kubánske pesos</displayName>
- <displayName count="many">kubánskeho pesa</displayName>
- <displayName count="other">kubánskych pesos</displayName>
- </currency>
- <currency type="CVE">
- <displayName>Kapverdské escudo</displayName>
- <displayName count="one">kapverdské escudo</displayName>
- <displayName count="few">kapverdské escudá</displayName>
- <displayName count="many">kapverdského escuda</displayName>
- <displayName count="other">kapverdských escúd</displayName>
- </currency>
- <currency type="CYP">
- <displayName>Cypruská libra</displayName>
- </currency>
- <currency type="CZK">
- <displayName>Česká koruna</displayName>
- <displayName count="one">česká koruna</displayName>
- <displayName count="few">české koruny</displayName>
- <displayName count="many">českej koruny</displayName>
- <displayName count="other">českých korún</displayName>
- </currency>
- <currency type="DDM">
- <displayName>Východonemecká marka</displayName>
- </currency>
- <currency type="DEM">
- <displayName>Nemecká marka</displayName>
- </currency>
- <currency type="DJF">
- <displayName>Džibutský frank</displayName>
- </currency>
- <currency type="DKK">
- <displayName>Dánska koruna</displayName>
- <displayName count="one">dánska koruna</displayName>
- <displayName count="few">dánske koruny</displayName>
- <displayName count="many">dánskej koruny</displayName>
- <displayName count="other">dánskych korún</displayName>
- </currency>
- <currency type="DOP">
- <displayName>Dominikánske peso</displayName>
- </currency>
- <currency type="DZD">
- <displayName>Alžírsky dinár</displayName>
- </currency>
- <currency type="ECS">
- <displayName>Ekuadorský sucre</displayName>
- </currency>
- <currency type="ECV">
- <displayName>Ekuadorský Unidad de Valor Constante (UVC)</displayName>
- </currency>
- <currency type="EEK">
- <displayName>Estónska kroon</displayName>
- <displayName count="one">estónska kroon</displayName>
- <displayName count="few">estónske kroony</displayName>
- <displayName count="many">estónskej kroony</displayName>
- <displayName count="other">estónskych kroon</displayName>
- </currency>
- <currency type="EGP">
- <displayName>Egyptská libra</displayName>
- </currency>
- <currency type="ERN">
- <displayName>Eritrejská nakfa</displayName>
- </currency>
- <currency type="ESP">
- <displayName>Španielská peseta</displayName>
- </currency>
- <currency type="ETB">
- <displayName>Ethiopský birr</displayName>
- </currency>
- <currency type="EUR">
- <displayName>Euro</displayName>
- <displayName count="one">euro</displayName>
- <displayName count="few">eurá</displayName>
- <displayName count="many">eura</displayName>
- <displayName count="other">eur</displayName>
- <symbol draft="contributed">€</symbol>
- </currency>
- <currency type="FIM">
- <displayName>Finská marka</displayName>
- </currency>
- <currency type="FJD">
- <displayName>Fidžijský dolár</displayName>
- <displayName count="one">fidžijský dolár</displayName>
- <displayName count="few">fidžijské doláre</displayName>
- <displayName count="many">fidžijského dolára</displayName>
- <displayName count="other">fidžijských dolárov</displayName>
- </currency>
- <currency type="FKP">
- <displayName>Falklandská libra</displayName>
- </currency>
- <currency type="FRF">
- <displayName>Francúzsky frank</displayName>
- </currency>
- <currency type="GBP">
- <displayName>Britská libra</displayName>
- <displayName count="one">britská libra</displayName>
- <displayName count="few">britskej libry</displayName>
- <displayName count="many">britskej libry</displayName>
- <displayName count="other">britských libier</displayName>
- <symbol draft="contributed">GBP</symbol>
- </currency>
- <currency type="GEK">
- <displayName>Gruzínsky Kupon Larit</displayName>
- </currency>
- <currency type="GEL">
- <displayName>Gruzínsky lari</displayName>
- </currency>
- <currency type="GHC">
- <displayName>Ghanský cedi (1979–2007)</displayName>
- <displayName count="one">ghanský cedi (1979–2007)</displayName>
- <displayName count="few">ghanské cedi (1979–2007)</displayName>
- <displayName count="many">ghanského cedi (1979–2007)</displayName>
- <displayName count="other">ghanských cedi (1979–2007)</displayName>
- </currency>
- <currency type="GHS">
- <displayName>Ghanský cedi</displayName>
- <displayName count="one">ghanský cedi</displayName>
- <displayName count="few">ghanské cedi</displayName>
- <displayName count="many">ghanského cedi</displayName>
- <displayName count="other">ghanských cedi</displayName>
- </currency>
- <currency type="GIP">
- <displayName>Gibraltarská libra</displayName>
- </currency>
- <currency type="GMD">
- <displayName>Gambijský dalasi</displayName>
- <displayName count="one">gambijský dalasi</displayName>
- <displayName count="few">gambijské dalasi</displayName>
- <displayName count="many">gambijského dalasi</displayName>
- <displayName count="other">gambijských dalasi</displayName>
- </currency>
- <currency type="GNF">
- <displayName>Guinejský frank</displayName>
- </currency>
- <currency type="GNS">
- <displayName>Guinejský syli</displayName>
- </currency>
- <currency type="GQE">
- <displayName>Rovníková Guinea Ekwele Guineana</displayName>
- </currency>
- <currency type="GRD">
- <displayName>Grécka drachma</displayName>
- </currency>
- <currency type="GTQ">
- <displayName>Guatemalský quetzal</displayName>
- </currency>
- <currency type="GWE">
- <displayName>Portugalská Guinea eskudo</displayName>
- </currency>
- <currency type="GWP">
- <displayName>Guinea-Bissau peso</displayName>
- <displayName count="one">Guinea-Bissau peso</displayName>
- <displayName count="few">Guinea-Bissau pesos</displayName>
- <displayName count="many">Guinea-Bissau pesa</displayName>
- <displayName count="other">Guinea-Bissau pesos</displayName>
- </currency>
- <currency type="GYD">
- <displayName>Guyanský dolár</displayName>
- </currency>
- <currency type="HKD">
- <displayName>Hongkonský dolár</displayName>
- <displayName count="one">hongkonský dolár</displayName>
- <displayName count="few">hongkonské doláre</displayName>
- <displayName count="many">hongkonského dolára</displayName>
- <displayName count="other">hongkonských dolárov</displayName>
- <symbol draft="contributed">HKD</symbol>
- </currency>
- <currency type="HNL">
- <displayName>Hoduraská lempira</displayName>
- <displayName count="one">honduraská lempira</displayName>
- <displayName count="few">honduraské lempiry</displayName>
- <displayName count="many">honduraskej lempiry</displayName>
- <displayName count="other">honduraských lempír</displayName>
- </currency>
- <currency type="HRD">
- <displayName>Chorvátsky dinár</displayName>
- </currency>
- <currency type="HRK">
- <displayName>Chorvátska kuna</displayName>
- </currency>
- <currency type="HTG">
- <displayName>Haitské gourde</displayName>
- </currency>
- <currency type="HUF">
- <displayName>Maďarský forint</displayName>
- <displayName count="one">maďarský forint</displayName>
- <displayName count="few">maďarské forinty</displayName>
- <displayName count="many">maďarského forinta</displayName>
- <displayName count="other">maďarských forintov</displayName>
- </currency>
- <currency type="IDR">
- <displayName>Indonézska rupia</displayName>
- <displayName count="one">indonézska rupia</displayName>
- <displayName count="few">indonézske rupie</displayName>
- <displayName count="many">indonézskej rupie</displayName>
- <displayName count="other">indonézskych rupií</displayName>
- </currency>
- <currency type="IEP">
- <displayName>Írska libra</displayName>
- </currency>
- <currency type="ILP">
- <displayName>Izraelská libra</displayName>
- </currency>
- <currency type="ILS">
- <displayName>Izraelský šekel</displayName>
- <symbol draft="contributed">₪</symbol>
- </currency>
- <currency type="INR">
- <displayName>Indická rupia</displayName>
- <displayName count="one">indická rupia</displayName>
- <displayName count="few">indické rupie</displayName>
- <displayName count="many">indickej rupie</displayName>
- <displayName count="other">indických rupií</displayName>
- <symbol draft="contributed">INR</symbol>
- </currency>
- <currency type="IQD">
- <displayName>Iracký dinár</displayName>
- </currency>
- <currency type="IRR">
- <displayName>Iránsky rial</displayName>
- </currency>
- <currency type="ISK">
- <displayName>Islandská krona</displayName>
- </currency>
- <currency type="ITL">
- <displayName>Talianská lira</displayName>
- </currency>
- <currency type="JMD">
- <displayName>Jamajský dolár</displayName>
- </currency>
- <currency type="JOD">
- <displayName>Jordánsky dinár</displayName>
- </currency>
- <currency type="JPY">
- <displayName>Japonský jen</displayName>
- <displayName count="one">japonský jen</displayName>
- <displayName count="few">japonské jeny</displayName>
- <displayName count="many">japonského jenu</displayName>
- <displayName count="other">japonských jenov</displayName>
- <symbol draft="contributed">JPY</symbol>
- </currency>
- <currency type="KES">
- <displayName>Keňský šiling</displayName>
- </currency>
- <currency type="KGS">
- <displayName>Kirgizský som</displayName>
- <displayName count="one">kirgizský som</displayName>
- <displayName count="few">kirgizské somy</displayName>
- <displayName count="many">kirgizského somu</displayName>
- <displayName count="other">kirgizských somov</displayName>
- </currency>
- <currency type="KHR">
- <displayName>Kambodžský riel</displayName>
- </currency>
- <currency type="KMF">
- <displayName>Komorský frank</displayName>
- <displayName count="one">Comoro frank</displayName>
- <displayName count="few">komorské franky</displayName>
- <displayName count="many">komorského franku</displayName>
- <displayName count="other">komorských frankov</displayName>
- </currency>
- <currency type="KPW">
- <displayName>Severokórejský won</displayName>
- </currency>
- <currency type="KRW">
- <displayName>Juhokórejský won</displayName>
- <displayName count="one">juhokórejský won</displayName>
- <displayName count="few">juhokórejské wony</displayName>
- <displayName count="many">juhokórejského wonu</displayName>
- <displayName count="other">juhokórejských wonov</displayName>
- <symbol draft="contributed">KRW</symbol>
- </currency>
- <currency type="KWD">
- <displayName>Kuvajtský dinár</displayName>
- <displayName count="one">kuvajtský dinár</displayName>
- <displayName count="few">kuvajtské dináre</displayName>
- <displayName count="many">kuvajtského dinára</displayName>
- <displayName count="other">kuvajtských dinárov</displayName>
- </currency>
- <currency type="KYD">
- <displayName>Kajmanský dolár</displayName>
- </currency>
- <currency type="KZT">
- <displayName>Kazašské tenge</displayName>
- <displayName count="one">kazašské tenge</displayName>
- <displayName count="few">kazašské tenge</displayName>
- <displayName count="many">kazašského tenge</displayName>
- <displayName count="other">kazašských tenge</displayName>
- </currency>
- <currency type="LAK">
- <displayName>Laoský kip</displayName>
- </currency>
- <currency type="LBP">
- <displayName>Libanonská libra</displayName>
- </currency>
- <currency type="LKR">
- <displayName>Srílanská rupia</displayName>
- <displayName count="one">srílanská rupia</displayName>
- <displayName count="few">srílanské rupie</displayName>
- <displayName count="many">srílanskej rupie</displayName>
- <displayName count="other">srílanských rupií</displayName>
- </currency>
- <currency type="LRD">
- <displayName>Libérský dolár</displayName>
- </currency>
- <currency type="LSL">
- <displayName>Lesothský loti</displayName>
- </currency>
- <currency type="LTL">
- <displayName>Litovský litas</displayName>
- <displayName count="one">litovský litas</displayName>
- <displayName count="few">litovské litasy</displayName>
- <displayName count="many">litovského litasa</displayName>
- <displayName count="other">litovských litasov</displayName>
- </currency>
- <currency type="LTT">
- <displayName>Litevský talonas</displayName>
- </currency>
- <currency type="LUF">
- <displayName>Luxemburský frank</displayName>
- </currency>
- <currency type="LVL">
- <displayName>Lotyšský lat</displayName>
- <displayName count="one">lotyšský lat</displayName>
- <displayName count="few">lotyšské laty</displayName>
- <displayName count="many">lotyšského latu</displayName>
- <displayName count="other">lotyšských latov</displayName>
- </currency>
- <currency type="LVR">
- <displayName>Lotyšský rubeľ</displayName>
- </currency>
- <currency type="LYD">
- <displayName>Libyjský dinár</displayName>
- </currency>
- <currency type="MAD">
- <displayName>Marocký dirham</displayName>
- </currency>
- <currency type="MAF">
- <displayName>Marocký frank</displayName>
- </currency>
- <currency type="MDL">
- <displayName>Moldavský leu</displayName>
- </currency>
- <currency type="MGA">
- <displayName>Madagaskarský ariary</displayName>
- </currency>
- <currency type="MGF">
- <displayName>Madagaskarský frank</displayName>
- </currency>
- <currency type="MKD">
- <displayName>Macedónsky denár</displayName>
- </currency>
- <currency type="MLF">
- <displayName>Malský frank</displayName>
- </currency>
- <currency type="MMK">
- <displayName>Myanmarský kyat</displayName>
- </currency>
- <currency type="MNT">
- <displayName>Mongolský tugrik</displayName>
- </currency>
- <currency type="MOP">
- <displayName>Macajská pataca</displayName>
- <displayName count="one">macajská pataca</displayName>
- <displayName count="few">macajské patacy</displayName>
- <displayName count="many">macajskej patacy</displayName>
- <displayName count="other">macajských patác</displayName>
- </currency>
- <currency type="MRO">
- <displayName>Mauritania Ouguiya</displayName>
- <displayName count="one">mauritánska ukija</displayName>
- <displayName count="few">mauritánske ukije</displayName>
- <displayName count="many">mauritánskej ukije</displayName>
- <displayName count="other">mauritánskych ukijí</displayName>
- </currency>
- <currency type="MTL">
- <displayName>Maltská lira</displayName>
- </currency>
- <currency type="MTP">
- <displayName>Maltská libra</displayName>
- </currency>
- <currency type="MUR">
- <displayName>Maurícijská rupia</displayName>
- <displayName count="one">maurícijská rupia</displayName>
- <displayName count="few">maurícijské rupie</displayName>
- <displayName count="many">maurícijskej rupie</displayName>
- <displayName count="other">maurícijských rupií</displayName>
- </currency>
- <currency type="MVR">
- <displayName>Maldivská rufiyaa</displayName>
- </currency>
- <currency type="MWK">
- <displayName>Malawijská kwacha</displayName>
- <displayName count="one">malawijská kwacha</displayName>
- <displayName count="few">malawijské kwachy</displayName>
- <displayName count="many">malawijskej kwachy</displayName>
- <displayName count="other">malawijských kwách</displayName>
- </currency>
- <currency type="MXN">
- <displayName>Mexické peso</displayName>
- <displayName count="one">mexické peso</displayName>
- <displayName count="few">mexické pesos</displayName>
- <displayName count="many">mexického pesa</displayName>
- <displayName count="other">mexických pesos</displayName>
- <symbol draft="contributed">Mex$</symbol>
- </currency>
- <currency type="MXP">
- <displayName>Mexické striborné peso (1861–1992)</displayName>
- </currency>
- <currency type="MXV">
- <displayName>Mexické Unidad de Inversion (UDI)</displayName>
- </currency>
- <currency type="MYR">
- <displayName>Malajský ringgit</displayName>
- <displayName count="one">malajský ringgit</displayName>
- <displayName count="few">malajské ringgity</displayName>
- <displayName count="many">malajského ringgitu</displayName>
- <displayName count="other">malajských ringgitov</displayName>
- </currency>
- <currency type="MZE">
- <displayName>Mozabické escudo</displayName>
- <displayName count="one">mozabické escudo</displayName>
- <displayName count="few">mozabické escudá</displayName>
- <displayName count="many">mozabického escuda</displayName>
- <displayName count="other">mozabických escúd</displayName>
- </currency>
- <currency type="MZM">
- <displayName>Mozambický metical (1980–2006)</displayName>
- <displayName count="one">mozambický metical (1980–2006)</displayName>
- <displayName count="few">mozambické meticaly (1980–2006)</displayName>
- <displayName count="many">mozambického meticalu (1980–2006)</displayName>
- <displayName count="other">mozambických meticalov (1980–2006)</displayName>
- </currency>
- <currency type="MZN">
- <displayName>Mozambický metical</displayName>
- <displayName count="one">mozambický metical</displayName>
- <displayName count="few">mozambické meticaly</displayName>
- <displayName count="many">mozambického meticalu</displayName>
- <displayName count="other">mozambických meticalov</displayName>
- </currency>
- <currency type="NAD">
- <displayName>Namibský dolár</displayName>
- <displayName count="one">namíbijský dolár</displayName>
- <displayName count="few">namíbijské doláre</displayName>
- <displayName count="many">namíbijského dolára</displayName>
- <displayName count="other">namíbijských dolárov</displayName>
- </currency>
- <currency type="NGN">
- <displayName>Nigerská naira</displayName>
- </currency>
- <currency type="NIC">
- <displayName>Nikaragujská Cordoba (1988–1991)</displayName>
- <displayName count="one">nikaragujská córdoba (1988–1991)</displayName>
- <displayName count="few">nikaragujské córdoby (1988–1991)</displayName>
- <displayName count="many">nikaragujskej córdoby (1988–1991)</displayName>
- <displayName count="other">nikaragujských córdob (1988–1991)</displayName>
- </currency>
- <currency type="NIO">
- <displayName>Nikaragujská Cordoba</displayName>
- <displayName count="one">nikaragujská córdoba</displayName>
- <displayName count="few">nikaragujské córdoby</displayName>
- <displayName count="many">nikaragujskej córdoby</displayName>
- <displayName count="other">nikaragujských córdob</displayName>
- </currency>
- <currency type="NLG">
- <displayName>Nizozemský guilder</displayName>
- </currency>
- <currency type="NOK">
- <displayName>Nórska koruna</displayName>
- <displayName count="one">nórska koruna</displayName>
- <displayName count="few">nórske koruny</displayName>
- <displayName count="many">nórskej koruny</displayName>
- <displayName count="other">nórskych korún</displayName>
- </currency>
- <currency type="NPR">
- <displayName>Nepálska rupia</displayName>
- </currency>
- <currency type="NZD">
- <displayName>Novozélandský dolár</displayName>
- <symbol draft="contributed">NZ$</symbol>
- </currency>
- <currency type="OMR">
- <displayName>Ománský rial</displayName>
- </currency>
- <currency type="PAB">
- <displayName>Panamská balboa</displayName>
- </currency>
- <currency type="PEI">
- <displayName>Peruvský inti</displayName>
- </currency>
- <currency type="PEN">
- <displayName>Peruvský sol Nuevo</displayName>
- <displayName count="one">peruánsky nový sol</displayName>
- <displayName count="few">peruánske nové soly</displayName>
- <displayName count="many">peruánskeho nového sola</displayName>
- <displayName count="other">peruánskych nových solov</displayName>
- </currency>
- <currency type="PES">
- <displayName>Peruvský sol</displayName>
- </currency>
- <currency type="PGK">
- <displayName>Papuánska kina</displayName>
- <displayName count="one">papuánska kina</displayName>
- <displayName count="few">papuánske kiny</displayName>
- <displayName count="many">papuánskej kiny</displayName>
- <displayName count="other">papuánskych kín</displayName>
- </currency>
- <currency type="PHP">
- <displayName>Filipínske peso</displayName>
- </currency>
- <currency type="PKR">
- <displayName>Pakistanská rupia</displayName>
- </currency>
- <currency type="PLN">
- <displayName>Poľský zlotý</displayName>
- <displayName count="one">poľský zlotý</displayName>
- <displayName count="few">poľské zloté</displayName>
- <displayName count="many">poľského zlotého</displayName>
- <displayName count="other">poľských zlotých</displayName>
- <symbol draft="contributed">zl</symbol>
- </currency>
- <currency type="PLZ">
- <displayName>Polský zloty (1950–1995)</displayName>
- <displayName count="one">poľský zlotý (1950–1995)</displayName>
- <displayName count="few">poľské zloté (1950–1995)</displayName>
- <displayName count="many">poľského zlotého (1950–1995)</displayName>
- <displayName count="other">poľských zlotých (1950–1995)</displayName>
- </currency>
- <currency type="PTE">
- <displayName>Portugalské eskudo</displayName>
- </currency>
- <currency type="PYG">
- <displayName>Paraguayské guarani</displayName>
- <displayName count="one">paraguajské guaraní</displayName>
- <displayName count="few">paraguayské guarani</displayName>
- <displayName count="many">paraguayského guarani</displayName>
- <displayName count="other">paraguayských guarani</displayName>
- </currency>
- <currency type="QAR">
- <displayName>Katarský rial</displayName>
- <displayName count="one">katarský rial</displayName>
- <displayName count="few">katarské rialy</displayName>
- <displayName count="many">katarského rialu</displayName>
- <displayName count="other">katarských rialov</displayName>
- </currency>
- <currency type="ROL">
- <displayName>Rumunský leu (1952–2006)</displayName>
- <displayName count="one">rumunský leu (1952–2006)</displayName>
- <displayName count="few">rumunské leu (1952–2006)</displayName>
- <displayName count="many">rumunského leu (1952–2006)</displayName>
- <displayName count="other">rumunských leu (1952–2006)</displayName>
- </currency>
- <currency type="RON">
- <displayName>Rumunský leu</displayName>
- <displayName count="one">rumunský leu</displayName>
- <displayName count="few">rumunské leu</displayName>
- <displayName count="many">rumunského leu</displayName>
- <displayName count="other">rumunských leu</displayName>
- </currency>
- <currency type="RSD">
- <displayName>Srbský dinár</displayName>
- <displayName count="one">srbský dinár</displayName>
- <displayName count="few">srbské dináre</displayName>
- <displayName count="many">srbského dinára</displayName>
- <displayName count="other">srbských dinárov</displayName>
- </currency>
- <currency type="RUB">
- <displayName>Ruský rubeľ</displayName>
- <displayName count="one">ruský rubeľ</displayName>
- <displayName count="few">ruské ruble</displayName>
- <displayName count="many">ruského rubľa</displayName>
- <displayName count="other">ruských rubľov</displayName>
- </currency>
- <currency type="RUR">
- <displayName>Ruský rubeľ (1991–1998)</displayName>
- </currency>
- <currency type="RWF">
- <displayName>Rwandský frank</displayName>
- </currency>
- <currency type="SAR">
- <displayName>Saudskoarabský rial</displayName>
- <displayName count="one">saudskoarabský rial</displayName>
- <displayName count="few">saudskoarabské rialy</displayName>
- <displayName count="many">saudskoarabského rialu</displayName>
- <displayName count="other">saudskoarabských rialov</displayName>
- </currency>
- <currency type="SBD">
- <displayName>Šalamúnsky dolár</displayName>
- <displayName count="one">šalamúnsky dolár</displayName>
- <displayName count="few">šalamúnske doláre</displayName>
- <displayName count="many">šalamúnskeho dolára</displayName>
- <displayName count="other">šalamúnskych dolárov</displayName>
- </currency>
- <currency type="SCR">
- <displayName>Seychelská rupia</displayName>
- <displayName count="one">seychelská rupia</displayName>
- <displayName count="few">seychelské rupie</displayName>
- <displayName count="many">seychelskej rupie</displayName>
- <displayName count="other">seychelských rupií</displayName>
- </currency>
- <currency type="SDD">
- <displayName>Sudánsky dinár</displayName>
- </currency>
- <currency type="SDG">
- <displayName>Sudánska libra</displayName>
- <displayName count="one">sudánska libra</displayName>
- <displayName count="few">sudánske libry</displayName>
- <displayName count="many">sudánskej libry</displayName>
- <displayName count="other">sudánskych libier</displayName>
- </currency>
- <currency type="SDP">
- <displayName>Sudánska libra (1957–1998)</displayName>
- <displayName count="one">sudánska libra (1957–1998)</displayName>
- <displayName count="few">sudánske libry (1957–1998)</displayName>
- <displayName count="many">sudánskej libry (1957–1998)</displayName>
- <displayName count="other">sudánskych libier (1957–1998)</displayName>
- </currency>
- <currency type="SEK">
- <displayName>Švédska koruna</displayName>
- <displayName count="one">švédska koruna</displayName>
- <displayName count="few">švédske koruny</displayName>
- <displayName count="many">švédskej koruny</displayName>
- <displayName count="other">švédskych korún</displayName>
- </currency>
- <currency type="SGD">
- <displayName>Singapúrsky dolár</displayName>
- </currency>
- <currency type="SHP">
- <displayName>Svätohelenská libra</displayName>
- <displayName count="one">svätohelenská libra</displayName>
- <displayName count="few">svätohelenské libry</displayName>
- <displayName count="many">svätohelenskej libry</displayName>
- <displayName count="other">svätohelenských libier</displayName>
- </currency>
- <currency type="SIT">
- <displayName>Slovinský Tolar</displayName>
- </currency>
- <currency type="SKK">
- <displayName>Slovenská koruna</displayName>
- </currency>
- <currency type="SLL">
- <displayName>Sierraleonský leone</displayName>
- <displayName count="one">sierraleonský leone</displayName>
- <displayName count="few">sierraleonské leone</displayName>
- <displayName count="many">sierraleonského leone</displayName>
- <displayName count="other">sierraleonských leone</displayName>
- </currency>
- <currency type="SOS">
- <displayName>Somálsky šiling</displayName>
- </currency>
- <currency type="SRD">
- <displayName>Surinamský dolár</displayName>
- <displayName count="one">surinamský dolár</displayName>
- <displayName count="few">surinamské doláre</displayName>
- <displayName count="many">surinamského dolára</displayName>
- <displayName count="other">surinamských dolárov</displayName>
- </currency>
- <currency type="SRG">
- <displayName>Surinamský guilder</displayName>
- </currency>
- <currency type="SSP">
- <displayName>Juhosudánska libra</displayName>
- <displayName count="one">juhosudánska libra</displayName>
- <displayName count="few">juhosudánske libry</displayName>
- <displayName count="many">juhosudánskej libry</displayName>
- <displayName count="other">juhosudánskych libier</displayName>
- </currency>
- <currency type="STD">
- <displayName>Sao Tome a Principe dobra</displayName>
- <displayName count="one">svätotomášska dobra</displayName>
- <displayName count="few">svätotomášske dobry</displayName>
- <displayName count="many">svätotomášskej dobry</displayName>
- <displayName count="other">svätotomášskych dobrí</displayName>
- </currency>
- <currency type="SUR">
- <displayName>Sovietsky rubeľ</displayName>
- </currency>
- <currency type="SVC">
- <displayName>Salvádorský colón</displayName>
- <displayName count="one">salvádorský colón</displayName>
- <displayName count="few">salvádorské colóny</displayName>
- <displayName count="many">salvádorského colóna</displayName>
- <displayName count="other">salvádorských colónov</displayName>
- </currency>
- <currency type="SYP">
- <displayName>Syrská libra</displayName>
- </currency>
- <currency type="SZL">
- <displayName>Svazijské lilangeni</displayName>
- <displayName count="one">svazijské lilangeni</displayName>
- <displayName count="few">svazijské lilangeni</displayName>
- <displayName count="many">svazijského lilangeni</displayName>
- <displayName count="other">svazijských lilangeni</displayName>
- </currency>
- <currency type="THB">
- <displayName>Thajský baht</displayName>
- <displayName count="one">thajský baht</displayName>
- <displayName count="few">thajské bahty</displayName>
- <displayName count="many">thajského bahtu</displayName>
- <displayName count="other">thajských bahtov</displayName>
- <symbol draft="contributed">THB</symbol>
- </currency>
- <currency type="TJR">
- <displayName>Tadžický rubeľ</displayName>
- </currency>
- <currency type="TJS">
- <displayName>Tadžické somoni</displayName>
- <displayName count="one">tadžické somoni</displayName>
- <displayName count="few">tadžické somoni</displayName>
- <displayName count="many">tadžického somoni</displayName>
- <displayName count="other">tadžických somoni</displayName>
- </currency>
- <currency type="TMM">
- <displayName>Turkménsky manat (1993–2009)</displayName>
- <displayName count="one">turkménsky manat (1993–2009)</displayName>
- <displayName count="few">turkménske manaty (1993–2009)</displayName>
- <displayName count="many">turkménskeho manatu (1993–2009)</displayName>
- <displayName count="other">turkménskych manatov (1993–2009)</displayName>
- </currency>
- <currency type="TMT">
- <displayName>Turkménsky manat</displayName>
- <displayName count="one">turkménsky manat</displayName>
- <displayName count="few">turkménske manaty</displayName>
- <displayName count="many">turkménskeho manatu</displayName>
- <displayName count="other">turkménskych manatov</displayName>
- </currency>
- <currency type="TND">
- <displayName>Tuniský dinár</displayName>
- </currency>
- <currency type="TOP">
- <displayName>Tonga Paʻanga</displayName>
- <displayName count="one">tongská pa'anga</displayName>
- <displayName count="few">tongské pa'anga</displayName>
- <displayName count="many">tongského pa'anga</displayName>
- <displayName count="other">tongských pa'anga</displayName>
- </currency>
- <currency type="TPE">
- <displayName>Timorské eskudo</displayName>
- </currency>
- <currency type="TRL">
- <displayName>Turecká lira (1922–2005)</displayName>
- <displayName count="one">turecká líra (1922–2005)</displayName>
- <displayName count="few">turecké líry (1922–2005)</displayName>
- <displayName count="many">tureckej líry (1922–2005)</displayName>
- <displayName count="other">tureckých lír (1922–2005)</displayName>
- </currency>
- <currency type="TRY">
- <displayName>Turecká líra</displayName>
- <displayName count="one">turecká líra</displayName>
- <displayName count="few">turecké líry</displayName>
- <displayName count="many">tureckej líry</displayName>
- <displayName count="other">tureckých lír</displayName>
- </currency>
- <currency type="TTD">
- <displayName>Trinidadsko-tobažský dolár</displayName>
- <displayName count="one">trinidadsko-tobažský dolár</displayName>
- <displayName count="few">trinidadsko-tobažské doláre</displayName>
- <displayName count="many">trinidadsko-tobažského dolára</displayName>
- <displayName count="other">trinidadsko-tobažských dolárov</displayName>
- </currency>
- <currency type="TWD">
- <displayName>Nový taiwanský dolár</displayName>
- <displayName count="one">nový taiwanský dolár</displayName>
- <displayName count="few">nové taiwanské doláre</displayName>
- <displayName count="many">nového taiwanského dolára</displayName>
- <displayName count="other">nových taiwanských dolárov</displayName>
- <symbol>TWD</symbol>
- </currency>
- <currency type="TZS">
- <displayName>Tanzanský šiling</displayName>
- </currency>
- <currency type="UAH">
- <displayName>Ukrainská hrivna</displayName>
- <displayName count="one">ukrajinská hrivna</displayName>
- <displayName count="few">ukrajinské hrivny</displayName>
- <displayName count="many">ukrajinskej hrivny</displayName>
- <displayName count="other">ukrajinských hrivien</displayName>
- </currency>
- <currency type="UAK">
- <displayName>Ukrainský karbovanetz</displayName>
- </currency>
- <currency type="UGS">
- <displayName>Ugandan šiling (1966–1987)</displayName>
- </currency>
- <currency type="UGX">
- <displayName>Ugandský šiling</displayName>
- </currency>
- <currency type="USD">
- <displayName>Americký dolár</displayName>
- <displayName count="one">americký dolár</displayName>
- <displayName count="few">americké doláre</displayName>
- <displayName count="many">amerického dolára</displayName>
- <displayName count="other">amerických dolárov</displayName>
- <symbol draft="contributed">USD</symbol>
- </currency>
- <currency type="USN">
- <displayName>US dolár (Next day)</displayName>
- </currency>
- <currency type="USS">
- <displayName>US dolár (Same day)</displayName>
- </currency>
- <currency type="UYP">
- <displayName>Uruguajské peso (1975–1993)</displayName>
- </currency>
- <currency type="UYU">
- <displayName>Uruguajské peso Uruguayo</displayName>
- <displayName count="one">uruguajské peso</displayName>
- <displayName count="few">uruguajské pesos</displayName>
- <displayName count="many">uruguajských pesos</displayName>
- <displayName count="other">uruguajských pesos</displayName>
- </currency>
- <currency type="UZS">
- <displayName>Uzbecký sum</displayName>
- <displayName count="one">uzbecký sum</displayName>
- <displayName count="few">uzbecké sumy</displayName>
- <displayName count="many">uzbeckého sumu</displayName>
- <displayName count="other">uzbeckých sumov</displayName>
- </currency>
- <currency type="VEB">
- <displayName>Venezuelský bolívar (1871–2008)</displayName>
- </currency>
- <currency type="VEF">
- <displayName>Venezuelský bolívar</displayName>
- </currency>
- <currency type="VND">
- <displayName>Vietnamský dong</displayName>
- <symbol draft="contributed">₫</symbol>
- </currency>
- <currency type="VUV">
- <displayName>Vanuatské vatu</displayName>
- <displayName count="one">vanuatské vatu</displayName>
- <displayName count="few">vanuatské vatu</displayName>
- <displayName count="many">vanuatského vatu</displayName>
- <displayName count="other">vanuatských vatu</displayName>
- </currency>
- <currency type="WST">
- <displayName>Samojská tala</displayName>
- <displayName count="one">samojská tala</displayName>
- <displayName count="few">samojské taly</displayName>
- <displayName count="many">samojskej taly</displayName>
- <displayName count="other">samojských tál</displayName>
- </currency>
- <currency type="XAF">
- <displayName>CFA frank BEAC</displayName>
- <symbol draft="contributed">FCFA</symbol>
- </currency>
- <currency type="XAU">
- <displayName>Zlato</displayName>
- </currency>
- <currency type="XCD">
- <displayName>Východokaribský dolár</displayName>
- <displayName count="one">východokaribský dolár</displayName>
- <displayName count="few">východokaribské doláre</displayName>
- <displayName count="many">východokaribského dolára</displayName>
- <displayName count="other">východokaribských dolárov</displayName>
- <symbol>EC$</symbol>
- </currency>
- <currency type="XDR">
- <displayName>Špeciálne práva čerpania</displayName>
- </currency>
- <currency type="XFO">
- <displayName>Francúzsky zlatý frank</displayName>
- </currency>
- <currency type="XFU">
- <displayName>Francúzsky UIC-frank</displayName>
- </currency>
- <currency type="XOF">
- <displayName>CFA frank BCEAO</displayName>
- <symbol draft="contributed">CFA</symbol>
- </currency>
- <currency type="XPF">
- <displayName>CFP frank</displayName>
- <symbol draft="contributed">CFPF</symbol>
- </currency>
- <currency type="XXX">
- <displayName>Neznáma mena</displayName>
- <displayName count="one">Neznáma mena</displayName>
- <displayName count="few">Neznáma mena</displayName>
- <displayName count="many">Neznáma mena</displayName>
- <displayName count="other">Neznáma mena</displayName>
- </currency>
- <currency type="YDD">
- <displayName>Jemenský dinár</displayName>
- </currency>
- <currency type="YER">
- <displayName>Jemenský rial</displayName>
- </currency>
- <currency type="YUD">
- <displayName>Juhoslávsky dinár [YUD]</displayName>
- </currency>
- <currency type="YUM">
- <displayName>Juhoslávsky Noviy dinár</displayName>
- </currency>
- <currency type="YUN">
- <displayName>Juhoslávsky dinár</displayName>
- </currency>
- <currency type="ZAL">
- <displayName>Juhoafrický rand (financial)</displayName>
- </currency>
- <currency type="ZAR">
- <displayName>Juhoafrický rand</displayName>
- <displayName count="one">juhoafrický rand</displayName>
- <displayName count="few">juhoafrické randy</displayName>
- <displayName count="many">juhoafrického randu</displayName>
- <displayName count="other">juhoafrických randov</displayName>
- </currency>
- <currency type="ZMK">
- <displayName>Zambijská kwacha (1968–2012)</displayName>
- <displayName count="one">zambijská kwacha (1968–2012)</displayName>
- <displayName count="few">zambijské kwachy (1968–2012)</displayName>
- <displayName count="many">zambijskej kwachy (1968–2012)</displayName>
- <displayName count="other">zambijských kwách (1968–2012)</displayName>
- </currency>
- <currency type="ZMW">
- <displayName>Zambijská kwacha</displayName>
- <displayName count="one">zambijská kwacha</displayName>
- <displayName count="few">zambijské kwachy</displayName>
- <displayName count="many">zambijskej kwachy</displayName>
- <displayName count="other">zambijských kwách</displayName>
- </currency>
- <currency type="ZRN">
- <displayName>Zairský nový zaire</displayName>
- </currency>
- <currency type="ZRZ">
- <displayName>Zairský Zaire</displayName>
- </currency>
- <currency type="ZWD">
- <displayName>Zimbabwiansky dolár (1980–2008)</displayName>
- <displayName count="one">zimbabwiansky dolár (1980–2008)</displayName>
- <displayName count="few">zimbabwianske doláre (1980–2008)</displayName>
- <displayName count="many">zimbabwianskeho dolára (1980–2008)</displayName>
- <displayName count="other">zimbabwianskych dolárov (1980–2008)</displayName>
- </currency>
- <currency type="ZWL">
- <displayName>Zimbabwiansky dolár (2009)</displayName>
- <displayName count="one">zimbabwiansky dolár (2009)</displayName>
- <displayName count="few">zimbabwianske doláre (2009)</displayName>
- <displayName count="many">zimbabwianskeho dolára (2009)</displayName>
- <displayName count="other">zimbabwianskych dolárov (2009)</displayName>
- </currency>
- <currency type="ZWR">
- <displayName>Zimbabwiansky dolár (2008)</displayName>
- <displayName count="one">zimbabwiansky dolár (2008)</displayName>
- <displayName count="few">zimbabwianske doláre (2008)</displayName>
- <displayName count="many">zimbabwianskeho dolára (2008)</displayName>
- <displayName count="other">zimbabwianskych dolárov (2008)</displayName>
- </currency>
- </currencies>
- <miscPatterns numberSystem="latn">
- <pattern type="atLeast" draft="contributed">{0}+</pattern>
- <pattern type="range" draft="contributed">{0}–{1}</pattern>
- </miscPatterns>
- </numbers>
- <units>
- <unitLength type="long">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0} za {1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} jednotka preťaženia</unitPattern>
- <unitPattern count="few">{0} jednotky preťaženia</unitPattern>
- <unitPattern count="many">{0} jednotky preťaženia</unitPattern>
- <unitPattern count="other">{0} jednotiek preťaženia</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} minúta</unitPattern>
- <unitPattern count="few">{0} minúty</unitPattern>
- <unitPattern count="many">{0} minúty</unitPattern>
- <unitPattern count="other">{0} minút</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} sekunda</unitPattern>
- <unitPattern count="few">{0} sekundy</unitPattern>
- <unitPattern count="many">{0} sekundy</unitPattern>
- <unitPattern count="other">{0} sekúnd</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} stupeň</unitPattern>
- <unitPattern count="few">{0} stupne</unitPattern>
- <unitPattern count="many">{0} stupňa</unitPattern>
- <unitPattern count="other">{0} stupňov</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} aker</unitPattern>
- <unitPattern count="few">{0} akre</unitPattern>
- <unitPattern count="many">{0} akra</unitPattern>
- <unitPattern count="other">{0} akrov</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} hektár</unitPattern>
- <unitPattern count="few">{0} hektáre</unitPattern>
- <unitPattern count="many">{0} hektára</unitPattern>
- <unitPattern count="other">{0} hektárov</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} štvorcová stopa</unitPattern>
- <unitPattern count="few">{0} štvorcové stopy</unitPattern>
- <unitPattern count="many">{0} štvorcovej stopy</unitPattern>
- <unitPattern count="other">{0} štvorcových stôp</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} kilometer štvorcový</unitPattern>
- <unitPattern count="few">{0} kilometre štvorcové</unitPattern>
- <unitPattern count="many">{0} kilometra štvorcového</unitPattern>
- <unitPattern count="other">{0} kilometrov štvorcových</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} meter štvorcový</unitPattern>
- <unitPattern count="few">{0} metre štvorcové</unitPattern>
- <unitPattern count="many">{0} metra štvorcového</unitPattern>
- <unitPattern count="other">{0} metrov štvorcových</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} míľa štvorcová</unitPattern>
- <unitPattern count="few">{0} míle štvorcové</unitPattern>
- <unitPattern count="many">{0} míle štvorcovej</unitPattern>
- <unitPattern count="other">{0} míľ štvorcových</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} deň</unitPattern>
- <unitPattern count="few">{0} dni</unitPattern>
- <unitPattern count="many">{0} dňa</unitPattern>
- <unitPattern count="other">{0} dní</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} hodina</unitPattern>
- <unitPattern count="few">{0} hodiny</unitPattern>
- <unitPattern count="many">{0} hodiny</unitPattern>
- <unitPattern count="other">{0} hodín</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} milisekunda</unitPattern>
- <unitPattern count="few">{0} milisekundy</unitPattern>
- <unitPattern count="many">{0} milisekundy</unitPattern>
- <unitPattern count="other">{0} milisekúnd</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} minúta</unitPattern>
- <unitPattern count="few">{0} minúty</unitPattern>
- <unitPattern count="many">{0} minúty</unitPattern>
- <unitPattern count="other">{0} minút</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} mesiac</unitPattern>
- <unitPattern count="few">{0} mesiace</unitPattern>
- <unitPattern count="many">{0} mesiaca</unitPattern>
- <unitPattern count="other">{0} mesiacov</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} sekunda</unitPattern>
- <unitPattern count="few">{0} sekundy</unitPattern>
- <unitPattern count="many">{0} sekundy</unitPattern>
- <unitPattern count="other">{0} sekúnd</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} týždeň</unitPattern>
- <unitPattern count="few">{0} týždne</unitPattern>
- <unitPattern count="many">{0} týždňa</unitPattern>
- <unitPattern count="other">{0} týždňov</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} rok</unitPattern>
- <unitPattern count="few">{0} roky</unitPattern>
- <unitPattern count="many">{0} roka</unitPattern>
- <unitPattern count="other">{0} rokov</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} centimeter</unitPattern>
- <unitPattern count="few">{0} centimetre</unitPattern>
- <unitPattern count="many">{0} centimetra</unitPattern>
- <unitPattern count="other">{0} centimetrov</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} stopa</unitPattern>
- <unitPattern count="few">{0} stopy</unitPattern>
- <unitPattern count="many">{0} stôp</unitPattern>
- <unitPattern count="other">{0} stôp</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} palec</unitPattern>
- <unitPattern count="few">{0} palce</unitPattern>
- <unitPattern count="many">{0} palca</unitPattern>
- <unitPattern count="other">{0} palcov</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} kilometer</unitPattern>
- <unitPattern count="few">{0} kilometre</unitPattern>
- <unitPattern count="many">{0} kilometra</unitPattern>
- <unitPattern count="other">{0} kilometrov</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} svetelný rok</unitPattern>
- <unitPattern count="few">{0} svetelné roky</unitPattern>
- <unitPattern count="many">{0} svetelného roku</unitPattern>
- <unitPattern count="other">{0} svetelných rokov</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} meter</unitPattern>
- <unitPattern count="few">{0} metre</unitPattern>
- <unitPattern count="many">{0} metra</unitPattern>
- <unitPattern count="other">{0} metrov</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} míľa</unitPattern>
- <unitPattern count="few">{0} míle</unitPattern>
- <unitPattern count="many">{0} míle</unitPattern>
- <unitPattern count="other">{0} míľ</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} milimeter</unitPattern>
- <unitPattern count="few">{0} milimetre</unitPattern>
- <unitPattern count="many">{0} milimetra</unitPattern>
- <unitPattern count="other">{0} milimetrov</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pikometer</unitPattern>
- <unitPattern count="few">{0} pikometre</unitPattern>
- <unitPattern count="many">{0} pikometra</unitPattern>
- <unitPattern count="other">{0} pikometrov</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} yard</unitPattern>
- <unitPattern count="few">{0} yardy</unitPattern>
- <unitPattern count="many">{0} yardu</unitPattern>
- <unitPattern count="other">{0} yardov</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} gram</unitPattern>
- <unitPattern count="few">{0} gramy</unitPattern>
- <unitPattern count="many">{0} gramu</unitPattern>
- <unitPattern count="other">{0} gramov</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} kilogram</unitPattern>
- <unitPattern count="few">{0} kilogramy</unitPattern>
- <unitPattern count="many">{0} kilogramu</unitPattern>
- <unitPattern count="other">{0} kilogramov</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} unca</unitPattern>
- <unitPattern count="few">{0} unce</unitPattern>
- <unitPattern count="many">{0} unce</unitPattern>
- <unitPattern count="other">{0} uncí</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} libra</unitPattern>
- <unitPattern count="few">{0} libry</unitPattern>
- <unitPattern count="many">{0} libry</unitPattern>
- <unitPattern count="other">{0} libier</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} konská sila</unitPattern>
- <unitPattern count="few">{0} konské sily</unitPattern>
- <unitPattern count="many">{0} konskej sily</unitPattern>
- <unitPattern count="other">{0} konských síl</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} kilowatt</unitPattern>
- <unitPattern count="few">{0} kilowatty</unitPattern>
- <unitPattern count="many">{0} kilowattu</unitPattern>
- <unitPattern count="other">{0} kilowattov</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} watt</unitPattern>
- <unitPattern count="few">{0} watty</unitPattern>
- <unitPattern count="many">{0} wattu</unitPattern>
- <unitPattern count="other">{0} wattov</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hektopascal</unitPattern>
- <unitPattern count="few">{0} hektopascaly</unitPattern>
- <unitPattern count="many">{0} hektopascala</unitPattern>
- <unitPattern count="other">{0} hektopascalov</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} palec ortuťového stĺpca</unitPattern>
- <unitPattern count="few">{0} palce ortuťového stĺpca</unitPattern>
- <unitPattern count="many">{0} palce ortuťového stĺpca</unitPattern>
- <unitPattern count="other">{0} palcov ortuťového stĺpca</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} milibar</unitPattern>
- <unitPattern count="few">{0} milibary</unitPattern>
- <unitPattern count="many">{0} milibaru</unitPattern>
- <unitPattern count="other">{0} milibarov</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} kilometer za hodinu</unitPattern>
- <unitPattern count="few">{0} kilometre za hodinu</unitPattern>
- <unitPattern count="many">{0} kilometra za hodinu</unitPattern>
- <unitPattern count="other">{0} kilometrov za hodinu</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} meter za sekundu</unitPattern>
- <unitPattern count="few">{0} metre za sekundu</unitPattern>
- <unitPattern count="many">{0} metra za sekundu</unitPattern>
- <unitPattern count="other">{0} metrov za sekundu</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} míľa za hodinu</unitPattern>
- <unitPattern count="few">{0} míle za hodinu</unitPattern>
- <unitPattern count="many">{0} míle za hodinu</unitPattern>
- <unitPattern count="other">{0} míľ za hodinu</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0} stupeň Celzia</unitPattern>
- <unitPattern count="few">{0} stupne Celzia</unitPattern>
- <unitPattern count="many">{0} stupňa Celzia</unitPattern>
- <unitPattern count="other">{0} stupňov Celzia</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0} stupeň Fahrenheita</unitPattern>
- <unitPattern count="few">{0} stupne Fahrenheita</unitPattern>
- <unitPattern count="many">{0} stupňa Fahrenheita</unitPattern>
- <unitPattern count="other">{0} stupňov Fahrenheita</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} kubický kilometer</unitPattern>
- <unitPattern count="few">{0} kubické kilometre</unitPattern>
- <unitPattern count="many">{0} kubického kilometra</unitPattern>
- <unitPattern count="other">{0} kubických kilometrov</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} kubická míľa</unitPattern>
- <unitPattern count="few">{0} kubické míle</unitPattern>
- <unitPattern count="many">{0} kubickej míle</unitPattern>
- <unitPattern count="other">{0} kubických míľ</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} liter</unitPattern>
- <unitPattern count="few">{0} litre</unitPattern>
- <unitPattern count="many">{0} litra</unitPattern>
- <unitPattern count="other">{0} litrov</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="short">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0} G</unitPattern>
- <unitPattern count="few">{0} G</unitPattern>
- <unitPattern count="many">{0} G</unitPattern>
- <unitPattern count="other">{0} G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0} min</unitPattern>
- <unitPattern count="few">{0} min</unitPattern>
- <unitPattern count="many">{0} min</unitPattern>
- <unitPattern count="other">{0} min</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0} sek.</unitPattern>
- <unitPattern count="few">{0} sek.</unitPattern>
- <unitPattern count="many">{0} sek.</unitPattern>
- <unitPattern count="other">{0} sek.</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0} stup.</unitPattern>
- <unitPattern count="few">{0} stup.</unitPattern>
- <unitPattern count="many">{0} stup.</unitPattern>
- <unitPattern count="other">{0} stup.</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0} ac</unitPattern>
- <unitPattern count="few">{0} ac</unitPattern>
- <unitPattern count="many">{0} ac</unitPattern>
- <unitPattern count="other">{0} ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0} ha</unitPattern>
- <unitPattern count="few">{0} ha</unitPattern>
- <unitPattern count="many">{0} ha</unitPattern>
- <unitPattern count="other">{0} ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0} ft²</unitPattern>
- <unitPattern count="few">{0} ft²</unitPattern>
- <unitPattern count="many">{0} ft²</unitPattern>
- <unitPattern count="other">{0} ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="few">{0} km²</unitPattern>
- <unitPattern count="many">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="few">{0} m²</unitPattern>
- <unitPattern count="many">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0} mi²</unitPattern>
- <unitPattern count="few">{0} mi²</unitPattern>
- <unitPattern count="many">{0} mi²</unitPattern>
- <unitPattern count="other">{0} mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0} d.</unitPattern>
- <unitPattern count="few">{0} d.</unitPattern>
- <unitPattern count="many">{0} d.</unitPattern>
- <unitPattern count="other">{0} d.</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0} hod.</unitPattern>
- <unitPattern count="few">{0} hod.</unitPattern>
- <unitPattern count="many">{0} hod.</unitPattern>
- <unitPattern count="other">{0} hod.</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0} ms</unitPattern>
- <unitPattern count="few">{0} ms</unitPattern>
- <unitPattern count="many">{0} ms</unitPattern>
- <unitPattern count="other">{0} ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0} min.</unitPattern>
- <unitPattern count="few">{0} min.</unitPattern>
- <unitPattern count="many">{0} min.</unitPattern>
- <unitPattern count="other">{0} min.</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0} mes.</unitPattern>
- <unitPattern count="few">{0} mes.</unitPattern>
- <unitPattern count="many">{0} mes.</unitPattern>
- <unitPattern count="other">{0} mes.</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0} sek.</unitPattern>
- <unitPattern count="few">{0} sek.</unitPattern>
- <unitPattern count="many">{0} sek.</unitPattern>
- <unitPattern count="other">{0} sek.</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0} týžd.</unitPattern>
- <unitPattern count="few">{0} týžd.</unitPattern>
- <unitPattern count="many">{0} týžd.</unitPattern>
- <unitPattern count="other">{0} týžd.</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0} r.</unitPattern>
- <unitPattern count="few">{0} r.</unitPattern>
- <unitPattern count="many">{0} r.</unitPattern>
- <unitPattern count="other">{0} r.</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0} cm</unitPattern>
- <unitPattern count="few">{0} cm</unitPattern>
- <unitPattern count="many">{0} cm</unitPattern>
- <unitPattern count="other">{0} cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0} ft</unitPattern>
- <unitPattern count="few">{0} ft</unitPattern>
- <unitPattern count="many">{0} ft</unitPattern>
- <unitPattern count="other">{0} ft</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0} in</unitPattern>
- <unitPattern count="few">{0} in</unitPattern>
- <unitPattern count="many">{0} in</unitPattern>
- <unitPattern count="other">{0} in</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0} km</unitPattern>
- <unitPattern count="few">{0} km</unitPattern>
- <unitPattern count="many">{0} km</unitPattern>
- <unitPattern count="other">{0} km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0} ly</unitPattern>
- <unitPattern count="few">{0} ly</unitPattern>
- <unitPattern count="many">{0} ly</unitPattern>
- <unitPattern count="other">{0} ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0} m</unitPattern>
- <unitPattern count="few">{0} m</unitPattern>
- <unitPattern count="many">{0} m</unitPattern>
- <unitPattern count="other">{0} m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0} mi</unitPattern>
- <unitPattern count="few">{0} mi</unitPattern>
- <unitPattern count="many">{0} mi</unitPattern>
- <unitPattern count="other">{0} mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0} mm</unitPattern>
- <unitPattern count="few">{0} mm</unitPattern>
- <unitPattern count="many">{0} mm</unitPattern>
- <unitPattern count="other">{0} mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0} pm</unitPattern>
- <unitPattern count="few">{0} pm</unitPattern>
- <unitPattern count="many">{0} pm</unitPattern>
- <unitPattern count="other">{0} pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0} yd</unitPattern>
- <unitPattern count="few">{0} yd</unitPattern>
- <unitPattern count="many">{0} yd</unitPattern>
- <unitPattern count="other">{0} yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0} g</unitPattern>
- <unitPattern count="few">{0} g</unitPattern>
- <unitPattern count="many">{0} g</unitPattern>
- <unitPattern count="other">{0} g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0} kg</unitPattern>
- <unitPattern count="few">{0} kg</unitPattern>
- <unitPattern count="many">{0} kg</unitPattern>
- <unitPattern count="other">{0} kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0} oz</unitPattern>
- <unitPattern count="few">{0} oz</unitPattern>
- <unitPattern count="many">{0} oz</unitPattern>
- <unitPattern count="other">{0} oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0} lb</unitPattern>
- <unitPattern count="few">{0} lb</unitPattern>
- <unitPattern count="many">{0} lb</unitPattern>
- <unitPattern count="other">{0} lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0} hp</unitPattern>
- <unitPattern count="few">{0} hp</unitPattern>
- <unitPattern count="many">{0} hp</unitPattern>
- <unitPattern count="other">{0} hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0} kW</unitPattern>
- <unitPattern count="few">{0} kW</unitPattern>
- <unitPattern count="many">{0} kW</unitPattern>
- <unitPattern count="other">{0} kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0} W</unitPattern>
- <unitPattern count="few">{0} W</unitPattern>
- <unitPattern count="many">{0} W</unitPattern>
- <unitPattern count="other">{0} W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0} hPa</unitPattern>
- <unitPattern count="few">{0} hPa</unitPattern>
- <unitPattern count="many">{0} hPa</unitPattern>
- <unitPattern count="other">{0} hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0} inHg</unitPattern>
- <unitPattern count="few">{0} inHg</unitPattern>
- <unitPattern count="many">{0} inHg</unitPattern>
- <unitPattern count="other">{0} inHg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0} mb</unitPattern>
- <unitPattern count="few">{0} mb</unitPattern>
- <unitPattern count="many">{0} mb</unitPattern>
- <unitPattern count="other">{0} mb</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0} km/h</unitPattern>
- <unitPattern count="few">{0} km/h</unitPattern>
- <unitPattern count="many">{0} km/h</unitPattern>
- <unitPattern count="other">{0} km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0} m/s</unitPattern>
- <unitPattern count="few">{0} m/s</unitPattern>
- <unitPattern count="many">{0} m/s</unitPattern>
- <unitPattern count="other">{0} m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0} mph</unitPattern>
- <unitPattern count="few">{0} mph</unitPattern>
- <unitPattern count="many">{0} mph</unitPattern>
- <unitPattern count="other">{0} mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°C</unitPattern>
- <unitPattern count="few">{0}°C</unitPattern>
- <unitPattern count="many">{0}°C</unitPattern>
- <unitPattern count="other">{0}°C</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="few">{0}°F</unitPattern>
- <unitPattern count="many">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0} km³</unitPattern>
- <unitPattern count="few">{0} km³</unitPattern>
- <unitPattern count="many">{0} km³</unitPattern>
- <unitPattern count="other">{0} km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0} mi³</unitPattern>
- <unitPattern count="few">{0} mi³</unitPattern>
- <unitPattern count="many">{0} mi³</unitPattern>
- <unitPattern count="other">{0} mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0} l</unitPattern>
- <unitPattern count="few">{0} l</unitPattern>
- <unitPattern count="many">{0} l</unitPattern>
- <unitPattern count="other">{0} l</unitPattern>
- </unit>
- </unitLength>
- <unitLength type="narrow">
- <compoundUnit type="per">
- <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
- </compoundUnit>
- <unit type="acceleration-g-force">
- <unitPattern count="one">{0}G</unitPattern>
- <unitPattern count="few">{0}G</unitPattern>
- <unitPattern count="many">{0}G</unitPattern>
- <unitPattern count="other">{0}G</unitPattern>
- </unit>
- <unit type="angle-arc-minute">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="few">{0}′</unitPattern>
- <unitPattern count="many">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="angle-arc-second">
- <unitPattern count="one">{0}″</unitPattern>
- <unitPattern count="few">{0}″</unitPattern>
- <unitPattern count="many">{0}″</unitPattern>
- <unitPattern count="other">{0}″</unitPattern>
- </unit>
- <unit type="angle-degree">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="few">{0}°</unitPattern>
- <unitPattern count="many">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="area-acre">
- <unitPattern count="one">{0}ac</unitPattern>
- <unitPattern count="few">{0}ac</unitPattern>
- <unitPattern count="many">{0}ac</unitPattern>
- <unitPattern count="other">{0}ac</unitPattern>
- </unit>
- <unit type="area-hectare">
- <unitPattern count="one">{0}ha</unitPattern>
- <unitPattern count="few">{0}ha</unitPattern>
- <unitPattern count="many">{0}ha</unitPattern>
- <unitPattern count="other">{0}ha</unitPattern>
- </unit>
- <unit type="area-square-foot">
- <unitPattern count="one">{0}ft²</unitPattern>
- <unitPattern count="few">{0}ft²</unitPattern>
- <unitPattern count="many">{0}ft²</unitPattern>
- <unitPattern count="other">{0}ft²</unitPattern>
- </unit>
- <unit type="area-square-kilometer">
- <unitPattern count="one">{0} km²</unitPattern>
- <unitPattern count="few">{0} km²</unitPattern>
- <unitPattern count="many">{0} km²</unitPattern>
- <unitPattern count="other">{0} km²</unitPattern>
- </unit>
- <unit type="area-square-meter">
- <unitPattern count="one">{0} m²</unitPattern>
- <unitPattern count="few">{0} m²</unitPattern>
- <unitPattern count="many">{0} m²</unitPattern>
- <unitPattern count="other">{0} m²</unitPattern>
- </unit>
- <unit type="area-square-mile">
- <unitPattern count="one">{0}mi²</unitPattern>
- <unitPattern count="few">{0}mi²</unitPattern>
- <unitPattern count="many">{0}mi²</unitPattern>
- <unitPattern count="other">{0}mi²</unitPattern>
- </unit>
- <unit type="duration-day">
- <unitPattern count="one">{0}d.</unitPattern>
- <unitPattern count="few">{0}d.</unitPattern>
- <unitPattern count="many">{0}d.</unitPattern>
- <unitPattern count="other">{0}d.</unitPattern>
- </unit>
- <unit type="duration-hour">
- <unitPattern count="one">{0}h</unitPattern>
- <unitPattern count="few">{0}h</unitPattern>
- <unitPattern count="many">{0}h</unitPattern>
- <unitPattern count="other">{0}h</unitPattern>
- </unit>
- <unit type="duration-millisecond">
- <unitPattern count="one">{0}ms</unitPattern>
- <unitPattern count="few">{0}ms</unitPattern>
- <unitPattern count="many">{0}ms</unitPattern>
- <unitPattern count="other">{0}ms</unitPattern>
- </unit>
- <unit type="duration-minute">
- <unitPattern count="one">{0}min</unitPattern>
- <unitPattern count="few">{0}min</unitPattern>
- <unitPattern count="many">{0}min</unitPattern>
- <unitPattern count="other">{0}min</unitPattern>
- </unit>
- <unit type="duration-month">
- <unitPattern count="one">{0}mes.</unitPattern>
- <unitPattern count="few">{0}mes.</unitPattern>
- <unitPattern count="many">{0}mes.</unitPattern>
- <unitPattern count="other">{0}mes.</unitPattern>
- </unit>
- <unit type="duration-second">
- <unitPattern count="one">{0}s</unitPattern>
- <unitPattern count="few">{0}s</unitPattern>
- <unitPattern count="many">{0}s</unitPattern>
- <unitPattern count="other">{0}s</unitPattern>
- </unit>
- <unit type="duration-week">
- <unitPattern count="one">{0}týžd.</unitPattern>
- <unitPattern count="few">{0}týžd.</unitPattern>
- <unitPattern count="many">{0}týžd.</unitPattern>
- <unitPattern count="other">{0}týžd.</unitPattern>
- </unit>
- <unit type="duration-year">
- <unitPattern count="one">{0}r.</unitPattern>
- <unitPattern count="few">{0}r.</unitPattern>
- <unitPattern count="many">{0}r.</unitPattern>
- <unitPattern count="other">{0}r.</unitPattern>
- </unit>
- <unit type="length-centimeter">
- <unitPattern count="one">{0}cm</unitPattern>
- <unitPattern count="few">{0}cm</unitPattern>
- <unitPattern count="many">{0}cm</unitPattern>
- <unitPattern count="other">{0}cm</unitPattern>
- </unit>
- <unit type="length-foot">
- <unitPattern count="one">{0}′</unitPattern>
- <unitPattern count="few">{0}′</unitPattern>
- <unitPattern count="many">{0}′</unitPattern>
- <unitPattern count="other">{0}′</unitPattern>
- </unit>
- <unit type="length-inch">
- <unitPattern count="one">{0}in</unitPattern>
- <unitPattern count="few">{0}in</unitPattern>
- <unitPattern count="many">{0}in</unitPattern>
- <unitPattern count="other">{0}in</unitPattern>
- </unit>
- <unit type="length-kilometer">
- <unitPattern count="one">{0}km</unitPattern>
- <unitPattern count="few">{0}km</unitPattern>
- <unitPattern count="many">{0}km</unitPattern>
- <unitPattern count="other">{0}km</unitPattern>
- </unit>
- <unit type="length-light-year">
- <unitPattern count="one">{0}ly</unitPattern>
- <unitPattern count="few">{0}ly</unitPattern>
- <unitPattern count="many">{0}ly</unitPattern>
- <unitPattern count="other">{0}ly</unitPattern>
- </unit>
- <unit type="length-meter">
- <unitPattern count="one">{0}m</unitPattern>
- <unitPattern count="few">{0}m</unitPattern>
- <unitPattern count="many">{0}m</unitPattern>
- <unitPattern count="other">{0}m</unitPattern>
- </unit>
- <unit type="length-mile">
- <unitPattern count="one">{0}mi</unitPattern>
- <unitPattern count="few">{0}mi</unitPattern>
- <unitPattern count="many">{0}mi</unitPattern>
- <unitPattern count="other">{0}mi</unitPattern>
- </unit>
- <unit type="length-millimeter">
- <unitPattern count="one">{0}mm</unitPattern>
- <unitPattern count="few">{0}mm</unitPattern>
- <unitPattern count="many">{0}mm</unitPattern>
- <unitPattern count="other">{0}mm</unitPattern>
- </unit>
- <unit type="length-picometer">
- <unitPattern count="one">{0}pm</unitPattern>
- <unitPattern count="few">{0}pm</unitPattern>
- <unitPattern count="many">{0}pm</unitPattern>
- <unitPattern count="other">{0}pm</unitPattern>
- </unit>
- <unit type="length-yard">
- <unitPattern count="one">{0}yd</unitPattern>
- <unitPattern count="few">{0}yd</unitPattern>
- <unitPattern count="many">{0}yd</unitPattern>
- <unitPattern count="other">{0}yd</unitPattern>
- </unit>
- <unit type="mass-gram">
- <unitPattern count="one">{0}g</unitPattern>
- <unitPattern count="few">{0}g</unitPattern>
- <unitPattern count="many">{0}g</unitPattern>
- <unitPattern count="other">{0}g</unitPattern>
- </unit>
- <unit type="mass-kilogram">
- <unitPattern count="one">{0}kg</unitPattern>
- <unitPattern count="few">{0}kg</unitPattern>
- <unitPattern count="many">{0}kg</unitPattern>
- <unitPattern count="other">{0}kg</unitPattern>
- </unit>
- <unit type="mass-ounce">
- <unitPattern count="one">{0}oz</unitPattern>
- <unitPattern count="few">{0}oz</unitPattern>
- <unitPattern count="many">{0}oz</unitPattern>
- <unitPattern count="other">{0}oz</unitPattern>
- </unit>
- <unit type="mass-pound">
- <unitPattern count="one">{0}lb</unitPattern>
- <unitPattern count="few">{0}lb</unitPattern>
- <unitPattern count="many">{0}lb</unitPattern>
- <unitPattern count="other">{0}lb</unitPattern>
- </unit>
- <unit type="power-horsepower">
- <unitPattern count="one">{0}hp</unitPattern>
- <unitPattern count="few">{0}hp</unitPattern>
- <unitPattern count="many">{0}hp</unitPattern>
- <unitPattern count="other">{0}hp</unitPattern>
- </unit>
- <unit type="power-kilowatt">
- <unitPattern count="one">{0}kW</unitPattern>
- <unitPattern count="few">{0}kW</unitPattern>
- <unitPattern count="many">{0}kW</unitPattern>
- <unitPattern count="other">{0}kW</unitPattern>
- </unit>
- <unit type="power-watt">
- <unitPattern count="one">{0}W</unitPattern>
- <unitPattern count="few">{0}W</unitPattern>
- <unitPattern count="many">{0}W</unitPattern>
- <unitPattern count="other">{0}W</unitPattern>
- </unit>
- <unit type="pressure-hectopascal">
- <unitPattern count="one">{0}hPa</unitPattern>
- <unitPattern count="few">{0}hPa</unitPattern>
- <unitPattern count="many">{0}hPa</unitPattern>
- <unitPattern count="other">{0}hPa</unitPattern>
- </unit>
- <unit type="pressure-inch-hg">
- <unitPattern count="one">{0}" Hg</unitPattern>
- <unitPattern count="few">{0}" Hg</unitPattern>
- <unitPattern count="many">{0}" Hg</unitPattern>
- <unitPattern count="other">{0}" Hg</unitPattern>
- </unit>
- <unit type="pressure-millibar">
- <unitPattern count="one">{0}mb</unitPattern>
- <unitPattern count="few">{0}mb</unitPattern>
- <unitPattern count="many">{0}mb</unitPattern>
- <unitPattern count="other">{0}mb</unitPattern>
- </unit>
- <unit type="speed-kilometer-per-hour">
- <unitPattern count="one">{0}km/h</unitPattern>
- <unitPattern count="few">{0}km/h</unitPattern>
- <unitPattern count="many">{0}km/h</unitPattern>
- <unitPattern count="other">{0}km/h</unitPattern>
- </unit>
- <unit type="speed-meter-per-second">
- <unitPattern count="one">{0}m/s</unitPattern>
- <unitPattern count="few">{0}m/s</unitPattern>
- <unitPattern count="many">{0}m/s</unitPattern>
- <unitPattern count="other">{0}m/s</unitPattern>
- </unit>
- <unit type="speed-mile-per-hour">
- <unitPattern count="one">{0}mph</unitPattern>
- <unitPattern count="few">{0}mph</unitPattern>
- <unitPattern count="many">{0}mph</unitPattern>
- <unitPattern count="other">{0}mph</unitPattern>
- </unit>
- <unit type="temperature-celsius">
- <unitPattern count="one">{0}°</unitPattern>
- <unitPattern count="few">{0}°</unitPattern>
- <unitPattern count="many">{0}°</unitPattern>
- <unitPattern count="other">{0}°</unitPattern>
- </unit>
- <unit type="temperature-fahrenheit">
- <unitPattern count="one">{0}°F</unitPattern>
- <unitPattern count="few">{0}°F</unitPattern>
- <unitPattern count="many">{0}°F</unitPattern>
- <unitPattern count="other">{0}°F</unitPattern>
- </unit>
- <unit type="volume-cubic-kilometer">
- <unitPattern count="one">{0}km³</unitPattern>
- <unitPattern count="few">{0}km³</unitPattern>
- <unitPattern count="many">{0}km³</unitPattern>
- <unitPattern count="other">{0}km³</unitPattern>
- </unit>
- <unit type="volume-cubic-mile">
- <unitPattern count="one">{0}mi³</unitPattern>
- <unitPattern count="few">{0}mi³</unitPattern>
- <unitPattern count="many">{0}mi³</unitPattern>
- <unitPattern count="other">{0}mi³</unitPattern>
- </unit>
- <unit type="volume-liter">
- <unitPattern count="one">{0}l</unitPattern>
- <unitPattern count="few">{0}l</unitPattern>
- <unitPattern count="many">{0}l</unitPattern>
- <unitPattern count="other">{0}l</unitPattern>
- </unit>
- </unitLength>
- <durationUnit type="hm">
- <durationUnitPattern>h:mm</durationUnitPattern>
- </durationUnit>
- <durationUnit type="hms">
- <durationUnitPattern>h:mm:ss</durationUnitPattern>
- </durationUnit>
- <durationUnit type="ms">
- <durationUnitPattern>m:ss</durationUnitPattern>
- </durationUnit>
- </units>
- <listPatterns>
- <listPattern>
- <listPatternPart type="start">{0}, {1}</listPatternPart>
- <listPatternPart type="middle">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0} a {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0} a {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit">
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
- </listPattern>
- <listPattern type="unit-short">
- <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="end" draft="contributed">{0}, {1}</listPatternPart>
- <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
- </listPattern>
- </listPatterns>
- <posix>
- <messages>
- <yesstr>áno:a</yesstr>
- <nostr>nie:n</nostr>
- </messages>
- </posix>
- </ldml>
|