sk.xml 229 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <!-- Copyright © 1991-2013 Unicode, Inc.
  4. CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
  5. For terms of use, see http://www.unicode.org/copyright.html
  6. -->
  7. <ldml>
  8. <identity>
  9. <version number="$Revision: 9852 $"/>
  10. <generation date="$Date: 2014-02-28 23:57:43 -0600 (Fri, 28 Feb 2014) $"/>
  11. <language type="sk"/>
  12. </identity>
  13. <localeDisplayNames>
  14. <localeDisplayPattern>
  15. <localePattern>{0} ({1})</localePattern>
  16. <localeSeparator>{0}, {1}</localeSeparator>
  17. <localeKeyTypePattern>{0}: {1}</localeKeyTypePattern>
  18. </localeDisplayPattern>
  19. <languages>
  20. <language type="aa">afarčina</language>
  21. <language type="ab">abcházština</language>
  22. <language type="ace" draft="contributed">acehčina</language>
  23. <language type="ach">ačoli</language>
  24. <language type="ada">adangme</language>
  25. <language type="ady">adygčina</language>
  26. <language type="ae">avestčina</language>
  27. <language type="af">afrikánčina</language>
  28. <language type="afh">afrihili</language>
  29. <language type="agq" draft="contributed">aghem</language>
  30. <language type="ain">ainčina</language>
  31. <language type="ak">akančina</language>
  32. <language type="akk">akkadčina</language>
  33. <language type="ale">aleutčina</language>
  34. <language type="alt" draft="contributed">južná altajčina</language>
  35. <language type="am">amharčina</language>
  36. <language type="an">aragónčina</language>
  37. <language type="ang" draft="contributed">stará angličtina</language>
  38. <language type="anp">angika</language>
  39. <language type="ar">arabčina</language>
  40. <language type="ar_001" draft="contributed">moderná štandardná arabčina</language>
  41. <language type="arc" draft="contributed">aramejčina</language>
  42. <language type="arn">araukánčina</language>
  43. <language type="arp">arapaho</language>
  44. <language type="arw">arawačtina</language>
  45. <language type="as">ásámčina</language>
  46. <language type="asa" draft="contributed">asu</language>
  47. <language type="ast">astúrčina</language>
  48. <language type="av">avarčina</language>
  49. <language type="awa">avadhčina</language>
  50. <language type="ay">aymarčina</language>
  51. <language type="az">azerbajdžančina</language>
  52. <language type="az" alt="short" draft="contributed">azerčina</language>
  53. <language type="ba">baskirčina</language>
  54. <language type="bal">balúčtina</language>
  55. <language type="ban">balijčina</language>
  56. <language type="bas">basa</language>
  57. <language type="bax" draft="contributed">bamun</language>
  58. <language type="bbj" draft="contributed">ghomala</language>
  59. <language type="be">bieloruština</language>
  60. <language type="bej">bedža</language>
  61. <language type="bem">bemba</language>
  62. <language type="bez" draft="contributed">bena</language>
  63. <language type="bfd" draft="contributed">bafut</language>
  64. <language type="bg">bulharčina</language>
  65. <language type="bho">bhódžpurčina</language>
  66. <language type="bi">bislama</language>
  67. <language type="bik">bikol</language>
  68. <language type="bin">bini</language>
  69. <language type="bkm" draft="contributed">kom</language>
  70. <language type="bla" draft="contributed">siksika</language>
  71. <language type="bm">bambarčina</language>
  72. <language type="bn">bengálčina</language>
  73. <language type="bo">tibetčina</language>
  74. <language type="br">bretónčina</language>
  75. <language type="bra">bradžčina</language>
  76. <language type="brx" draft="contributed">bodo</language>
  77. <language type="bs">bosniačtina</language>
  78. <language type="bss" draft="contributed">akoose</language>
  79. <language type="bua">buriatčina</language>
  80. <language type="bug">bugiština</language>
  81. <language type="bum" draft="contributed">bulu</language>
  82. <language type="byn">blin</language>
  83. <language type="byv" draft="contributed">medumba</language>
  84. <language type="ca">katalánčina</language>
  85. <language type="cad" draft="contributed">kaddo</language>
  86. <language type="car" draft="contributed">karibský</language>
  87. <language type="cay" draft="contributed">cayuga</language>
  88. <language type="cch" draft="contributed">atsam</language>
  89. <language type="ce">čečenčina</language>
  90. <language type="ceb">cebuánčina</language>
  91. <language type="cgg" draft="contributed">čiga</language>
  92. <language type="ch">čamorčina</language>
  93. <language type="chb">čibča</language>
  94. <language type="chg">čagatajčina</language>
  95. <language type="chk" draft="contributed">truk</language>
  96. <language type="chm" draft="contributed">marijčina</language>
  97. <language type="chn">činucký žargón</language>
  98. <language type="cho">čoktavčina</language>
  99. <language type="chp">čipevajčina</language>
  100. <language type="chr">čerokí</language>
  101. <language type="chy">čejenčina</language>
  102. <language type="ckb">kurdčina (sorání)</language>
  103. <language type="co">korzičtina</language>
  104. <language type="cop" draft="contributed">koptčina</language>
  105. <language type="cr">krí</language>
  106. <language type="crh" draft="contributed">krymská turečtina</language>
  107. <language type="cs">čeština</language>
  108. <language type="csb" draft="contributed">kašubčina</language>
  109. <language type="cu">cirkevná slovančina</language>
  110. <language type="cv">čuvaština</language>
  111. <language type="cy">waleština</language>
  112. <language type="da">dánčina</language>
  113. <language type="dak">dakotčina</language>
  114. <language type="dar">darginčina</language>
  115. <language type="dav" draft="contributed">taita</language>
  116. <language type="de">nemčina</language>
  117. <language type="de_AT">rakúska nemčina</language>
  118. <language type="de_CH">švajčiarska spisovná nemčina</language>
  119. <language type="del">delawarčina</language>
  120. <language type="den">slovančina</language>
  121. <language type="dgr">dogribčina</language>
  122. <language type="din">dinka</language>
  123. <language type="dje" draft="contributed">zarma</language>
  124. <language type="doi">dógrí</language>
  125. <language type="dsb" draft="contributed">dolnolužická srbčina</language>
  126. <language type="dua">duala</language>
  127. <language type="dum" draft="contributed">stredná holandčina</language>
  128. <language type="dv">divehi</language>
  129. <language type="dyo" draft="contributed">jola-fonyi</language>
  130. <language type="dyu">ďula</language>
  131. <language type="dz">dzongkä</language>
  132. <language type="dzg" draft="contributed">dazaga</language>
  133. <language type="ebu" draft="contributed">embu</language>
  134. <language type="ee">eweština</language>
  135. <language type="efi">efik</language>
  136. <language type="egy" draft="contributed">staroegyptský</language>
  137. <language type="eka">ekadžuk</language>
  138. <language type="el">gréčtina</language>
  139. <language type="elx">elamčina</language>
  140. <language type="en">angličtina</language>
  141. <language type="en_AU">austrálska angličtina</language>
  142. <language type="en_CA">kanadská angličtina</language>
  143. <language type="en_GB">britská angličtina</language>
  144. <language type="en_GB" alt="short" draft="contributed">angličtina (UK)</language>
  145. <language type="en_US">americká angličtina</language>
  146. <language type="en_US" alt="short" draft="contributed">angličtina (USA)</language>
  147. <language type="enm" draft="contributed">stredná angličtina</language>
  148. <language type="eo">esperanto</language>
  149. <language type="es">španielčina</language>
  150. <language type="es_419">latinskoamerická španielčina</language>
  151. <language type="es_ES">iberská španielčina</language>
  152. <language type="es_MX" draft="contributed">mexická španielčina</language>
  153. <language type="et">estónčina</language>
  154. <language type="eu">baskičtina</language>
  155. <language type="ewo">ewondo</language>
  156. <language type="fa">perzština</language>
  157. <language type="fan">fangčina</language>
  158. <language type="fat">fanti</language>
  159. <language type="ff">fulbčina</language>
  160. <language type="fi">fínčina</language>
  161. <language type="fil">filipínčina</language>
  162. <language type="fj">fidžijčina</language>
  163. <language type="fo">faerčina</language>
  164. <language type="fon">fončina</language>
  165. <language type="fr">francúzština</language>
  166. <language type="fr_CA">kanadská francúzština</language>
  167. <language type="fr_CH">švajčiarska francúzština</language>
  168. <language type="frm" draft="contributed">stredná francúzština</language>
  169. <language type="fro" draft="contributed">stará francúzština</language>
  170. <language type="frr" draft="contributed">severná frízština</language>
  171. <language type="frs">východná frízština</language>
  172. <language type="fur">friulčina</language>
  173. <language type="fy">západná frízština</language>
  174. <language type="ga">írčina</language>
  175. <language type="gaa">ga</language>
  176. <language type="gay">gayo</language>
  177. <language type="gba">gbaja</language>
  178. <language type="gd">škótska gaelčina</language>
  179. <language type="gez" draft="contributed">etiópčina</language>
  180. <language type="gil" draft="contributed">kiribatčina</language>
  181. <language type="gl">galícijčina</language>
  182. <language type="gmh" draft="contributed">stredná horná nemčina</language>
  183. <language type="gn">guaraní</language>
  184. <language type="goh" draft="contributed">stará horná nemčina</language>
  185. <language type="gon" draft="contributed">góndčina</language>
  186. <language type="gor" draft="contributed">gorontalo</language>
  187. <language type="got">gótčina</language>
  188. <language type="grb" draft="contributed">grebo</language>
  189. <language type="grc">starogréčtina</language>
  190. <language type="gsw">švajčiarska nemčina</language>
  191. <language type="gu">gudžarátčina</language>
  192. <language type="guz" draft="contributed">gusii</language>
  193. <language type="gv">mančina</language>
  194. <language type="gwi" draft="contributed">gwichʼin</language>
  195. <language type="ha">hauština</language>
  196. <language type="hai" draft="contributed">haida</language>
  197. <language type="haw">havajčina</language>
  198. <language type="he">hebrejčina</language>
  199. <language type="hi">hindčina</language>
  200. <language type="hil" draft="contributed">hiligajnončina</language>
  201. <language type="hit" draft="contributed">chetitčina</language>
  202. <language type="hmn" draft="contributed">hmong</language>
  203. <language type="ho">hiri motu</language>
  204. <language type="hr">chorvátčina</language>
  205. <language type="hsb" draft="contributed">hornolužická srbčina</language>
  206. <language type="ht">haitčina</language>
  207. <language type="hu">maďarčina</language>
  208. <language type="hup" draft="contributed">hupčina</language>
  209. <language type="hy">arménčina</language>
  210. <language type="hz">herero</language>
  211. <language type="ia">interlingua</language>
  212. <language type="iba" draft="contributed">ibančina</language>
  213. <language type="ibb" draft="contributed">ibibio</language>
  214. <language type="id">indonézština</language>
  215. <language type="ie">interlingue</language>
  216. <language type="ig">igboština</language>
  217. <language type="ii" draft="contributed">s’čchuanská ioština</language>
  218. <language type="ik" draft="contributed">inupiaq</language>
  219. <language type="ilo" draft="contributed">ilokánčina</language>
  220. <language type="inh" draft="contributed">inguština</language>
  221. <language type="io" draft="contributed">ido</language>
  222. <language type="is">islandčina</language>
  223. <language type="it">taliančina</language>
  224. <language type="iu" draft="contributed">inuktitut</language>
  225. <language type="ja">japončina</language>
  226. <language type="jbo" draft="contributed">lojban</language>
  227. <language type="jgo" draft="contributed">ngomba</language>
  228. <language type="jmc" draft="contributed">machame</language>
  229. <language type="jpr" draft="contributed">židovská perzština</language>
  230. <language type="jrb" draft="contributed">židovská arabčina</language>
  231. <language type="jv">jávčina</language>
  232. <language type="ka">gruzínčina</language>
  233. <language type="kaa" draft="contributed">karakalpačtina</language>
  234. <language type="kab" draft="contributed">kabylčina</language>
  235. <language type="kac" draft="contributed">kačjinčina</language>
  236. <language type="kaj" draft="contributed">jju</language>
  237. <language type="kam">kamba</language>
  238. <language type="kaw" draft="contributed">kawi</language>
  239. <language type="kbd" draft="contributed">kabardčina</language>
  240. <language type="kbl" draft="contributed">kanembu</language>
  241. <language type="kcg" draft="contributed">tyap</language>
  242. <language type="kde" draft="contributed">makonde</language>
  243. <language type="kea" draft="contributed">kapverdčina</language>
  244. <language type="kfo" draft="contributed">koro</language>
  245. <language type="kg">kongčina</language>
  246. <language type="kha" draft="contributed">khasijčina</language>
  247. <language type="kho" draft="contributed">chotančina</language>
  248. <language type="khq" draft="contributed">západná songhajčina</language>
  249. <language type="ki" draft="contributed">kikuju</language>
  250. <language type="kj">kuaňama</language>
  251. <language type="kk">kazaština</language>
  252. <language type="kkj" draft="contributed">kako</language>
  253. <language type="kl">grónska eskimáčtina</language>
  254. <language type="kln" draft="contributed">kalenjin</language>
  255. <language type="km">kambodžská khmérčina</language>
  256. <language type="kmb" draft="contributed">kimbundu</language>
  257. <language type="kn">kannadčina</language>
  258. <language type="ko">kórejčina</language>
  259. <language type="kok" draft="contributed">kónkánčina</language>
  260. <language type="kos" draft="contributed">kusaie</language>
  261. <language type="kpe" draft="contributed">kpelle</language>
  262. <language type="kr">kanurijčina</language>
  263. <language type="krc" draft="contributed">karačajevsko-balkarský jazyk</language>
  264. <language type="krl" draft="contributed">karelčina</language>
  265. <language type="kru" draft="contributed">kurukhčina</language>
  266. <language type="ks">kašmírčina</language>
  267. <language type="ksb" draft="contributed">šambala</language>
  268. <language type="ksf" draft="contributed">bafia</language>
  269. <language type="ksh" draft="contributed">kolínčina</language>
  270. <language type="ku">kurdčina</language>
  271. <language type="kum" draft="contributed">kumyčtina</language>
  272. <language type="kut" draft="contributed">kutenajčina</language>
  273. <language type="kv">komijčina</language>
  274. <language type="kw">kornčina</language>
  275. <language type="ky">kirgizština</language>
  276. <language type="la">latinčina</language>
  277. <language type="lad" draft="contributed">židovská španielčina</language>
  278. <language type="lag" draft="contributed">langi</language>
  279. <language type="lah" draft="contributed">lahandčina</language>
  280. <language type="lam" draft="contributed">lamba</language>
  281. <language type="lb">luxemburčina</language>
  282. <language type="lez" draft="contributed">lezginčina</language>
  283. <language type="lg">gandčina</language>
  284. <language type="li" draft="contributed">limburčina</language>
  285. <language type="ln">lingalčina</language>
  286. <language type="lo">laoština</language>
  287. <language type="lol">mongo</language>
  288. <language type="loz">lozi</language>
  289. <language type="lt">litovčina</language>
  290. <language type="lu">luba-katanga</language>
  291. <language type="lua">luba-luluánčina</language>
  292. <language type="lui" draft="contributed">luiseňo</language>
  293. <language type="lun" draft="contributed">lunda</language>
  294. <language type="luo" draft="contributed">luo</language>
  295. <language type="lus" draft="contributed">mizorámčina</language>
  296. <language type="luy" draft="contributed">luyia</language>
  297. <language type="lv">lotyština</language>
  298. <language type="mad" draft="contributed">madurčina</language>
  299. <language type="maf" draft="contributed">mafa</language>
  300. <language type="mag" draft="contributed">magadhčina</language>
  301. <language type="mai" draft="contributed">maithilčina</language>
  302. <language type="mak" draft="contributed">makasarčina</language>
  303. <language type="man" draft="contributed">mandingo</language>
  304. <language type="mas" draft="contributed">masajčina</language>
  305. <language type="mde" draft="contributed">maba</language>
  306. <language type="mdf" draft="contributed">mokšiančina</language>
  307. <language type="mdr" draft="contributed">mandarčina</language>
  308. <language type="men" draft="contributed">mendi</language>
  309. <language type="mer" draft="contributed">meru</language>
  310. <language type="mfe">maurícijská kreolčina</language>
  311. <language type="mg">malgaština</language>
  312. <language type="mga" draft="contributed">stredná írčina</language>
  313. <language type="mgh" draft="contributed">makhuwa-meetto</language>
  314. <language type="mgo" draft="contributed">meta’</language>
  315. <language type="mh">kajin-majol</language>
  316. <language type="mi">maorijčina</language>
  317. <language type="mic" draft="contributed">mikmakčina</language>
  318. <language type="min" draft="contributed">minangkabaučina</language>
  319. <language type="mk">macedónčina</language>
  320. <language type="ml">malajálamčina</language>
  321. <language type="mn">mongolčina</language>
  322. <language type="mnc" draft="contributed">mandžuština</language>
  323. <language type="mni" draft="contributed">manípurčina</language>
  324. <language type="moh" draft="contributed">mohawk</language>
  325. <language type="mos" draft="contributed">mossi</language>
  326. <language type="mr">maráthčina</language>
  327. <language type="ms">malajčina</language>
  328. <language type="mt">maltčina</language>
  329. <language type="mua" draft="contributed">mundang</language>
  330. <language type="mul" draft="contributed">viaceré jazyky</language>
  331. <language type="mus" draft="contributed">kríkčina</language>
  332. <language type="mwl" draft="contributed">mirandčina</language>
  333. <language type="mwr" draft="contributed">marawari</language>
  334. <language type="my">barmčina</language>
  335. <language type="mye" draft="contributed">myene</language>
  336. <language type="myv">erzjančina</language>
  337. <language type="na">nauru</language>
  338. <language type="nap" draft="contributed">neapolčina</language>
  339. <language type="naq" draft="contributed">nama</language>
  340. <language type="nb">nórsky bokmål</language>
  341. <language type="nd" draft="contributed">severné ndbele</language>
  342. <language type="nds" draft="contributed">dolná nemčina</language>
  343. <language type="ne">nepálčina</language>
  344. <language type="new" draft="contributed">nevárčina</language>
  345. <language type="ng">ndonga</language>
  346. <language type="nia" draft="contributed">niasánčina</language>
  347. <language type="niu" draft="contributed">niueština</language>
  348. <language type="nl">holandčina</language>
  349. <language type="nl_BE">flámčina</language>
  350. <language type="nmg" draft="contributed">kwasio</language>
  351. <language type="nn">nórsky nynorsk</language>
  352. <language type="nnh" draft="contributed">ngiemboon</language>
  353. <language type="no">nórčina</language>
  354. <language type="nog" draft="contributed">nogajčina</language>
  355. <language type="non" draft="contributed">stará nórčina</language>
  356. <language type="nqo" draft="contributed">n’ko</language>
  357. <language type="nr" draft="contributed">južná ndebelčina</language>
  358. <language type="nso" draft="contributed">severná sothčina</language>
  359. <language type="nus" draft="contributed">nuer</language>
  360. <language type="nv">navajo</language>
  361. <language type="nwc" draft="contributed">klasická nevárčina</language>
  362. <language type="ny">čewa</language>
  363. <language type="nym" draft="contributed">ňamwezi</language>
  364. <language type="nyn">ňankole</language>
  365. <language type="nyo" draft="contributed">ňoro</language>
  366. <language type="nzi" draft="contributed">nzima</language>
  367. <language type="oc">okcitánčina</language>
  368. <language type="oj">odžibva</language>
  369. <language type="om">oromčina</language>
  370. <language type="or">uríjčina</language>
  371. <language type="os">osetčina</language>
  372. <language type="osa" draft="contributed">osagčina</language>
  373. <language type="ota" draft="contributed">osmanská turečtina</language>
  374. <language type="pa">pandžábčina</language>
  375. <language type="pag" draft="contributed">pangasinančina</language>
  376. <language type="pal" draft="contributed">pahlaví</language>
  377. <language type="pam" draft="contributed">pampanga</language>
  378. <language type="pap" draft="contributed">papiamento</language>
  379. <language type="pau" draft="contributed">palaučina</language>
  380. <language type="peo" draft="contributed">stará perzština</language>
  381. <language type="phn" draft="contributed">feničtina</language>
  382. <language type="pi">pálí</language>
  383. <language type="pl">poľština</language>
  384. <language type="pon" draft="contributed">pohnpeičina</language>
  385. <language type="pro" draft="contributed">stará okcitánčina</language>
  386. <language type="ps">paštúnčina</language>
  387. <language type="ps" alt="variant" draft="contributed">paštčina</language>
  388. <language type="pt">portugalčina</language>
  389. <language type="pt_BR">brazílska portugalčina</language>
  390. <language type="pt_PT">iberská portugalčina</language>
  391. <language type="qu">kečuánčina</language>
  392. <language type="raj" draft="contributed">radžastančina</language>
  393. <language type="rap" draft="contributed">rapanujčina</language>
  394. <language type="rar" draft="contributed">rarotongan</language>
  395. <language type="rm">rétorománčina</language>
  396. <language type="rn">rundčina</language>
  397. <language type="ro">rumunčina</language>
  398. <language type="ro_MD">moldavčina</language>
  399. <language type="rof" draft="contributed">rombo</language>
  400. <language type="rom" draft="contributed">rómčina</language>
  401. <language type="root" draft="contributed">koreň</language>
  402. <language type="ru">ruština</language>
  403. <language type="rup" draft="contributed">arumunčina</language>
  404. <language type="rw">rwandčina</language>
  405. <language type="rwk" draft="contributed">rwa</language>
  406. <language type="sa">sanskrit</language>
  407. <language type="sad" draft="contributed">sandawe</language>
  408. <language type="sah" draft="contributed">jakutčina</language>
  409. <language type="sam" draft="contributed">samaritánska aramejčina</language>
  410. <language type="saq" draft="contributed">samburu</language>
  411. <language type="sas" draft="contributed">sasačtina</language>
  412. <language type="sat" draft="contributed">santalčina</language>
  413. <language type="sba" draft="contributed">ngambay</language>
  414. <language type="sbp" draft="contributed">sangu</language>
  415. <language type="sc">sardínčina</language>
  416. <language type="scn">sicílčina</language>
  417. <language type="sco" draft="contributed">škótčina</language>
  418. <language type="sd">sindhčina</language>
  419. <language type="se" draft="contributed">severná saamčina</language>
  420. <language type="see" draft="contributed">seneca</language>
  421. <language type="seh" draft="contributed">sena</language>
  422. <language type="sel" draft="contributed">selkupčina</language>
  423. <language type="ses" draft="contributed">koyraboro senni</language>
  424. <language type="sg">sango</language>
  425. <language type="sga" draft="contributed">stará írčina</language>
  426. <language type="sh">srbochorvátčina</language>
  427. <language type="shi" draft="contributed">tachelhit</language>
  428. <language type="shn" draft="contributed">šančina</language>
  429. <language type="shu" draft="contributed">čadská arabčina</language>
  430. <language type="si">sinhalčina</language>
  431. <language type="sid" draft="contributed">sidamo</language>
  432. <language type="sk">slovenčina</language>
  433. <language type="sl">slovinčina</language>
  434. <language type="sm">samojčina</language>
  435. <language type="sma" draft="contributed">južná saamčina</language>
  436. <language type="smj" draft="contributed">luleská saamčina</language>
  437. <language type="smn" draft="contributed">inariská saamčina</language>
  438. <language type="sms" draft="contributed">skolt</language>
  439. <language type="sn">šončina</language>
  440. <language type="snk" draft="contributed">soninke</language>
  441. <language type="so">somálčina</language>
  442. <language type="sog" draft="contributed">sogdijčina</language>
  443. <language type="sq">albánčina</language>
  444. <language type="sr">srbčina</language>
  445. <language type="srn" draft="contributed">sranan</language>
  446. <language type="srr" draft="contributed">serer</language>
  447. <language type="ss">svazijčina</language>
  448. <language type="ssy" draft="contributed">saho</language>
  449. <language type="st">južná sothčina</language>
  450. <language type="su">sundčina</language>
  451. <language type="suk" draft="contributed">sukuma</language>
  452. <language type="sus" draft="contributed">susu</language>
  453. <language type="sux">sumerčina</language>
  454. <language type="sv">švédčina</language>
  455. <language type="sw">swahilčina</language>
  456. <language type="swb" draft="contributed">komorčina</language>
  457. <language type="swc" draft="contributed">konžská svahilčina</language>
  458. <language type="syc" draft="contributed">klasická sýrčina</language>
  459. <language type="syr">sýrčina</language>
  460. <language type="ta">tamilčina</language>
  461. <language type="te">telugčina</language>
  462. <language type="tem" draft="contributed">temne</language>
  463. <language type="teo" draft="contributed">teso</language>
  464. <language type="ter" draft="contributed">tereno</language>
  465. <language type="tet" draft="contributed">tetum</language>
  466. <language type="tg">tadžičtina</language>
  467. <language type="th">thajčina</language>
  468. <language type="ti">tigriňa</language>
  469. <language type="tig" draft="contributed">tigrejčina</language>
  470. <language type="tiv" draft="contributed">tiv</language>
  471. <language type="tk">turkménčina</language>
  472. <language type="tkl" draft="contributed">tokelaučina</language>
  473. <language type="tl">tagalčina</language>
  474. <language type="tlh">klingónčina</language>
  475. <language type="tli" draft="contributed">tlingitčina</language>
  476. <language type="tmh" draft="contributed">tamašek</language>
  477. <language type="tn">tswančina</language>
  478. <language type="to">tongčina</language>
  479. <language type="tog" draft="contributed">ňasa tonga</language>
  480. <language type="tpi" draft="contributed">tok pisin</language>
  481. <language type="tr">turečtina</language>
  482. <language type="trv" draft="contributed">taroko</language>
  483. <language type="ts">tsonga</language>
  484. <language type="tsi" draft="contributed">tsimshijské jazyky</language>
  485. <language type="tt">tatárčina</language>
  486. <language type="tum" draft="contributed">tumbuka</language>
  487. <language type="tvl" draft="contributed">tuvalčina</language>
  488. <language type="tw">twi</language>
  489. <language type="twq" draft="contributed">tasawak</language>
  490. <language type="ty">tahitčina</language>
  491. <language type="tyv" draft="contributed">tuviančina</language>
  492. <language type="tzm" draft="contributed">stredomarocká berberčina</language>
  493. <language type="udm" draft="contributed">udmurtčina</language>
  494. <language type="ug">ujgurčina</language>
  495. <language type="uga" draft="contributed">ugaritčina</language>
  496. <language type="uk">ukrajinčina</language>
  497. <language type="umb" draft="contributed">umbundu</language>
  498. <language type="und">neznámy jazyk</language>
  499. <language type="ur">urdčina</language>
  500. <language type="uz">uzbečtina</language>
  501. <language type="vai" draft="contributed">vai</language>
  502. <language type="ve">vendčina</language>
  503. <language type="vi">vietnamčina</language>
  504. <language type="vo">volapük</language>
  505. <language type="vot" draft="contributed">vodčina</language>
  506. <language type="vun" draft="contributed">vunjo</language>
  507. <language type="wa">valónčina</language>
  508. <language type="wae" draft="contributed">walserčina</language>
  509. <language type="wal" draft="contributed">walamo</language>
  510. <language type="war" draft="contributed">waray</language>
  511. <language type="was" draft="contributed">washo</language>
  512. <language type="wo">wolof</language>
  513. <language type="xal" draft="contributed">kalmyčtina</language>
  514. <language type="xh">xhosa</language>
  515. <language type="xog" draft="contributed">soga</language>
  516. <language type="yao" draft="contributed">jao</language>
  517. <language type="yap" draft="contributed">japčina</language>
  518. <language type="yav" draft="contributed">jangben</language>
  519. <language type="ybb" draft="contributed">yemba</language>
  520. <language type="yi">jidiš</language>
  521. <language type="yo">jorubčina</language>
  522. <language type="yue" draft="contributed">kantončina</language>
  523. <language type="za">čuangčina</language>
  524. <language type="zap" draft="contributed">zapotéčtina</language>
  525. <language type="zbl" draft="contributed">systém Bliss</language>
  526. <language type="zen" draft="contributed">zenaga</language>
  527. <language type="zgh" draft="contributed">štandardný marocký tamazight</language>
  528. <language type="zh">čínština</language>
  529. <language type="zh_Hans">zjednodušená čínština</language>
  530. <language type="zh_Hant">tradičná čínština</language>
  531. <language type="zu">zuluština</language>
  532. <language type="zun" draft="contributed">zuniština</language>
  533. <language type="zxx" draft="contributed">bez jazykového obsahu</language>
  534. <language type="zza" draft="contributed">zázá</language>
  535. </languages>
  536. <scripts>
  537. <script type="Arab">arabské</script>
  538. <script type="Arab" alt="variant">perzsko-arabské</script>
  539. <script type="Armn">arménske</script>
  540. <script type="Bali" draft="contributed">balijský</script>
  541. <script type="Beng">bengálske</script>
  542. <script type="Bopo">bopomofo</script>
  543. <script type="Brai">braillovo písmo</script>
  544. <script type="Cyrl">cyrilika</script>
  545. <script type="Deva">dévanágarí</script>
  546. <script type="Egyp" draft="contributed">egyptské hieroglyfy</script>
  547. <script type="Ethi">etiópske</script>
  548. <script type="Geor">gruzínske</script>
  549. <script type="Glag" draft="contributed">hlaholika</script>
  550. <script type="Goth" draft="contributed">gotický</script>
  551. <script type="Grek">grécke</script>
  552. <script type="Gujr">gudžarátí</script>
  553. <script type="Guru">gurmukhi</script>
  554. <script type="Hang">hangul</script>
  555. <script type="Hani">han</script>
  556. <script type="Hans">Zjednodušené čínske</script>
  557. <script type="Hans" alt="stand-alone">han – zjednodušené</script>
  558. <script type="Hant">tradičné</script>
  559. <script type="Hant" alt="stand-alone">han – tradičné</script>
  560. <script type="Hebr">hebrejské</script>
  561. <script type="Hira">hiragana</script>
  562. <script type="Jpan">japonské</script>
  563. <script type="Kana">katakana</script>
  564. <script type="Khmr">khmérske</script>
  565. <script type="Knda">kannadské</script>
  566. <script type="Kore">kórejské</script>
  567. <script type="Laoo">laoské</script>
  568. <script type="Latn">latinka</script>
  569. <script type="Lina" draft="contributed">lineárna A</script>
  570. <script type="Linb" draft="contributed">lineárna B</script>
  571. <script type="Maya" draft="contributed">mayské hieroglyfy</script>
  572. <script type="Mlym">malajálamske</script>
  573. <script type="Mong">mongolské</script>
  574. <script type="Mymr">mjanmarské</script>
  575. <script type="Orya">uríjske</script>
  576. <script type="Osma" draft="contributed">osmanský</script>
  577. <script type="Runr" draft="contributed">Runové písmo</script>
  578. <script type="Sinh">sinhálske</script>
  579. <script type="Taml">tamilské</script>
  580. <script type="Telu">telugské</script>
  581. <script type="Thaa">tána</script>
  582. <script type="Thai">thajské</script>
  583. <script type="Tibt">tibetské</script>
  584. <script type="Zsym">symboly</script>
  585. <script type="Zxxx">bez zápisu</script>
  586. <script type="Zyyy">všeobecné</script>
  587. <script type="Zzzz">neznáme písmo</script>
  588. </scripts>
  589. <territories>
  590. <territory type="001">Svet</territory>
  591. <territory type="002">Afrika</territory>
  592. <territory type="003">Severná Amerika</territory>
  593. <territory type="005">Južná Amerika</territory>
  594. <territory type="009">Oceánia</territory>
  595. <territory type="011">Západná Afrika</territory>
  596. <territory type="013">Stredná Amerika</territory>
  597. <territory type="014">Východná Afrika</territory>
  598. <territory type="015">Severná Afrika</territory>
  599. <territory type="017">Stredná Afrika</territory>
  600. <territory type="018">južné územia Afriky</territory>
  601. <territory type="019">Americký kontinent</territory>
  602. <territory type="021">severné územia Ameriky</territory>
  603. <territory type="029">Karibik</territory>
  604. <territory type="030">Východná Ázia</territory>
  605. <territory type="034">Južná Ázia</territory>
  606. <territory type="035">Juhovýchodná Ázia</territory>
  607. <territory type="039">Južná Európa</territory>
  608. <territory type="053">Australázia</territory>
  609. <territory type="054">Melanézia</territory>
  610. <territory type="057">Mikronézia – oblasť</territory>
  611. <territory type="061">Polynézia</territory>
  612. <territory type="142">Ázia</territory>
  613. <territory type="143">Stredná Ázia</territory>
  614. <territory type="145">Západná Ázia</territory>
  615. <territory type="150">Európa</territory>
  616. <territory type="151">Východná Európa</territory>
  617. <territory type="154">Severná Európa</territory>
  618. <territory type="155">Západná Európa</territory>
  619. <territory type="419">Latinská Amerika</territory>
  620. <territory type="AC">Ostrov Ascensión</territory>
  621. <territory type="AD">Andorra</territory>
  622. <territory type="AE">Spojené arabské emiráty</territory>
  623. <territory type="AF">Afganistan</territory>
  624. <territory type="AG">Antigua a Barbuda</territory>
  625. <territory type="AI">Anguilla</territory>
  626. <territory type="AL">Albánsko</territory>
  627. <territory type="AM">Arménsko</territory>
  628. <territory type="AN">Holandské Antily</territory>
  629. <territory type="AO">Angola</territory>
  630. <territory type="AQ">Antarktída</territory>
  631. <territory type="AR">Argentína</territory>
  632. <territory type="AS">Americká Samoa</territory>
  633. <territory type="AT">Rakúsko</territory>
  634. <territory type="AU">Austrália</territory>
  635. <territory type="AW">Aruba</territory>
  636. <territory type="AX">Alandské ostrovy</territory>
  637. <territory type="AZ">Azerbajdžan</territory>
  638. <territory type="BA">Bosna a Hercegovina</territory>
  639. <territory type="BB">Barbados</territory>
  640. <territory type="BD">Bangladéš</territory>
  641. <territory type="BE">Belgicko</territory>
  642. <territory type="BF">Burkina Faso</territory>
  643. <territory type="BG">Bulharsko</territory>
  644. <territory type="BH">Bahrajn</territory>
  645. <territory type="BI">Burundi</territory>
  646. <territory type="BJ">Benin</territory>
  647. <territory type="BL">Svätý Bartolomej</territory>
  648. <territory type="BM">Bermudy</territory>
  649. <territory type="BN">Brunej</territory>
  650. <territory type="BO">Bolívia</territory>
  651. <territory type="BQ">Karibské Holandsko</territory>
  652. <territory type="BR">Brazília</territory>
  653. <territory type="BS">Bahamy</territory>
  654. <territory type="BT">Bhután</territory>
  655. <territory type="BV">Bouvetov ostrov</territory>
  656. <territory type="BW">Botswana</territory>
  657. <territory type="BY">Bielorusko</territory>
  658. <territory type="BZ">Belize</territory>
  659. <territory type="CA">Kanada</territory>
  660. <territory type="CC">Kokosové ostrovy</territory>
  661. <territory type="CD">Kongo - Kinshasa</territory>
  662. <territory type="CD" alt="variant">Kongo (DRK)</territory>
  663. <territory type="CF">Stredoafrická republika</territory>
  664. <territory type="CG">Kongo - Brazzaville</territory>
  665. <territory type="CG" alt="variant">Kongo (republika)</territory>
  666. <territory type="CH">Švajčiarsko</territory>
  667. <territory type="CI">Pobrežie Slonoviny</territory>
  668. <territory type="CK">Cookove ostrovy</territory>
  669. <territory type="CL">Čile</territory>
  670. <territory type="CM">Kamerun</territory>
  671. <territory type="CN">Čína</territory>
  672. <territory type="CO">Kolumbia</territory>
  673. <territory type="CP">Ostrov Clipperton</territory>
  674. <territory type="CR">Kostarika</territory>
  675. <territory type="CU">Kuba</territory>
  676. <territory type="CV">Kapverdy</territory>
  677. <territory type="CW">Curaçao</territory>
  678. <territory type="CX">Vianočný ostrov</territory>
  679. <territory type="CY">Cyprus</territory>
  680. <territory type="CZ">Česká republika</territory>
  681. <territory type="DE">Nemecko</territory>
  682. <territory type="DG">Diego Garcia</territory>
  683. <territory type="DJ">Džibutsko</territory>
  684. <territory type="DK">Dánsko</territory>
  685. <territory type="DM">Dominika</territory>
  686. <territory type="DO">Dominikánska republika</territory>
  687. <territory type="DZ">Alžírsko</territory>
  688. <territory type="EA">Ceuta a Melilla</territory>
  689. <territory type="EC">Ekvádor</territory>
  690. <territory type="EE">Estónsko</territory>
  691. <territory type="EG">Egypt</territory>
  692. <territory type="EH">Západná Sahara</territory>
  693. <territory type="ER">Eritrea</territory>
  694. <territory type="ES">Španielsko</territory>
  695. <territory type="ET">Etiópia</territory>
  696. <territory type="EU">Európska únia</territory>
  697. <territory type="FI">Fínsko</territory>
  698. <territory type="FJ">Fidži</territory>
  699. <territory type="FK">Falklandské ostrovy</territory>
  700. <territory type="FK" alt="variant">Falklandy (Islas Malvinas)</territory>
  701. <territory type="FM">Mikronézia</territory>
  702. <territory type="FO">Faerské ostrovy</territory>
  703. <territory type="FR">Francúzsko</territory>
  704. <territory type="GA">Gabon</territory>
  705. <territory type="GB">Spojené kráľovstvo</territory>
  706. <territory type="GB" alt="short" draft="contributed">UK</territory>
  707. <territory type="GD">Grenada</territory>
  708. <territory type="GE">Gruzínsko</territory>
  709. <territory type="GF">Francúzska Guayana</territory>
  710. <territory type="GG">Guernsey</territory>
  711. <territory type="GH">Ghana</territory>
  712. <territory type="GI">Gibraltár</territory>
  713. <territory type="GL">Grónsko</territory>
  714. <territory type="GM">Gambia</territory>
  715. <territory type="GN">Guinea</territory>
  716. <territory type="GP">Guadeloupe</territory>
  717. <territory type="GQ">Rovníková Guinea</territory>
  718. <territory type="GR">Grécko</territory>
  719. <territory type="GS">Južná Georgia a Južné Sandwichove ostrovy</territory>
  720. <territory type="GT">Guatemala</territory>
  721. <territory type="GU">Guam</territory>
  722. <territory type="GW">Guinea-Bissau</territory>
  723. <territory type="GY">Guayana</territory>
  724. <territory type="HK">Hongkong OAO Číny</territory>
  725. <territory type="HK" alt="short">Hongkong</territory>
  726. <territory type="HM">Heardov ostrov a McDonaldove ostrovy</territory>
  727. <territory type="HN">Honduras</territory>
  728. <territory type="HR">Chorvátsko</territory>
  729. <territory type="HT">Haiti</territory>
  730. <territory type="HU">Maďarsko</territory>
  731. <territory type="IC">Kanárske ostrovy</territory>
  732. <territory type="ID">Indonézia</territory>
  733. <territory type="IE">Írsko</territory>
  734. <territory type="IL">Izrael</territory>
  735. <territory type="IM">Ostrov Man</territory>
  736. <territory type="IN">India</territory>
  737. <territory type="IO">Britské indickooceánske územie</territory>
  738. <territory type="IQ">Irak</territory>
  739. <territory type="IR">Irán</territory>
  740. <territory type="IS">Island</territory>
  741. <territory type="IT">Taliansko</territory>
  742. <territory type="JE">Jersey</territory>
  743. <territory type="JM">Jamajka</territory>
  744. <territory type="JO">Jordánsko</territory>
  745. <territory type="JP">Japonsko</territory>
  746. <territory type="KE">Keňa</territory>
  747. <territory type="KG">Kirgizsko</territory>
  748. <territory type="KH">Kambodža</territory>
  749. <territory type="KI">Kiribati</territory>
  750. <territory type="KM">Komory</territory>
  751. <territory type="KN">Saint Kitts a Nevis</territory>
  752. <territory type="KP">Severná Kórea</territory>
  753. <territory type="KR">Južná Kórea</territory>
  754. <territory type="KW">Kuvajt</territory>
  755. <territory type="KY">Kajmanie ostrovy</territory>
  756. <territory type="KZ">Kazachstan</territory>
  757. <territory type="LA">Laos</territory>
  758. <territory type="LB">Libanon</territory>
  759. <territory type="LC">Svätá Lucia</territory>
  760. <territory type="LI">Lichtenštajnsko</territory>
  761. <territory type="LK">Srí Lanka</territory>
  762. <territory type="LR">Libéria</territory>
  763. <territory type="LS">Lesotho</territory>
  764. <territory type="LT">Litva</territory>
  765. <territory type="LU">Luxembursko</territory>
  766. <territory type="LV">Lotyšsko</territory>
  767. <territory type="LY">Líbya</territory>
  768. <territory type="MA">Maroko</territory>
  769. <territory type="MC">Monako</territory>
  770. <territory type="MD">Moldavsko</territory>
  771. <territory type="ME">Čierna Hora</territory>
  772. <territory type="MF">Saint Martin</territory>
  773. <territory type="MG">Madagaskar</territory>
  774. <territory type="MH">Marshallove ostrovy</territory>
  775. <territory type="MK">Macedónsko</territory>
  776. <territory type="MK" alt="variant">Macedónsko (BJRM)</territory>
  777. <territory type="ML">Mali</territory>
  778. <territory type="MM">Mjanmarsko</territory>
  779. <territory type="MN">Mongolsko</territory>
  780. <territory type="MO">Macao OAO Číny</territory>
  781. <territory type="MO" alt="short">Macao</territory>
  782. <territory type="MP">Severné Mariány</territory>
  783. <territory type="MQ">Martinik</territory>
  784. <territory type="MR">Mauritánia</territory>
  785. <territory type="MS">Montserrat</territory>
  786. <territory type="MT">Malta</territory>
  787. <territory type="MU">Maurícius</territory>
  788. <territory type="MV">Maldivy</territory>
  789. <territory type="MW">Malawi</territory>
  790. <territory type="MX">Mexiko</territory>
  791. <territory type="MY">Malajzia</territory>
  792. <territory type="MZ">Mozambik</territory>
  793. <territory type="NA">Namíbia</territory>
  794. <territory type="NC">Nová Kaledónia</territory>
  795. <territory type="NE">Niger</territory>
  796. <territory type="NF">Norfolkov ostrov</territory>
  797. <territory type="NG">Nigéria</territory>
  798. <territory type="NI">Nikaragua</territory>
  799. <territory type="NL">Holandsko</territory>
  800. <territory type="NO">Nórsko</territory>
  801. <territory type="NP">Nepál</territory>
  802. <territory type="NR">Nauru</territory>
  803. <territory type="NU">Niue</territory>
  804. <territory type="NZ">Nový Zéland</territory>
  805. <territory type="OM">Omán</territory>
  806. <territory type="PA">Panama</territory>
  807. <territory type="PE">Peru</territory>
  808. <territory type="PF">Francúzska Polynézia</territory>
  809. <territory type="PG">Papua Nová Guinea</territory>
  810. <territory type="PH">Filipíny</territory>
  811. <territory type="PK">Pakistan</territory>
  812. <territory type="PL">Poľsko</territory>
  813. <territory type="PM">Saint Pierre a Miquelon</territory>
  814. <territory type="PN">Pitcairnove ostrovy</territory>
  815. <territory type="PR">Portoriko</territory>
  816. <territory type="PS">Palestínske územie</territory>
  817. <territory type="PS" alt="short">Palestína</territory>
  818. <territory type="PT">Portugalsko</territory>
  819. <territory type="PW">Palau</territory>
  820. <territory type="PY">Paraguaj</territory>
  821. <territory type="QA">Katar</territory>
  822. <territory type="QO">Tichomorie - ostatné</territory>
  823. <territory type="RE">Réunion</territory>
  824. <territory type="RO">Rumunsko</territory>
  825. <territory type="RS">Srbsko</territory>
  826. <territory type="RU">Rusko</territory>
  827. <territory type="RW">Rwanda</territory>
  828. <territory type="SA">Saudská Arábia</territory>
  829. <territory type="SB">Šalamúnove ostrovy</territory>
  830. <territory type="SC">Seychelské ostrovy</territory>
  831. <territory type="SD">Sudán</territory>
  832. <territory type="SE">Švédsko</territory>
  833. <territory type="SG">Singapur</territory>
  834. <territory type="SH">Svätá Helena</territory>
  835. <territory type="SI">Slovinsko</territory>
  836. <territory type="SJ">Špicbergy a Jan Mayen</territory>
  837. <territory type="SK">Slovensko</territory>
  838. <territory type="SL">Sierra Leone</territory>
  839. <territory type="SM">San Maríno</territory>
  840. <territory type="SN">Senegal</territory>
  841. <territory type="SO">Somálsko</territory>
  842. <territory type="SR">Surinam</territory>
  843. <territory type="SS">Južný Sudán</territory>
  844. <territory type="ST">Svätý Tomáš a Princove ostrovy</territory>
  845. <territory type="SV">Salvador</territory>
  846. <territory type="SX">Sint Maarten</territory>
  847. <territory type="SY">Sýria</territory>
  848. <territory type="SZ">Svazijsko</territory>
  849. <territory type="TA">Tristan da Cunha</territory>
  850. <territory type="TC">Turks a Caicos</territory>
  851. <territory type="TD">Čad</territory>
  852. <territory type="TF">Francúzske južné a antarktické územia</territory>
  853. <territory type="TG">Togo</territory>
  854. <territory type="TH">Thajsko</territory>
  855. <territory type="TJ">Tadžikistan</territory>
  856. <territory type="TK">Tokelau</territory>
  857. <territory type="TL">Východný Timor</territory>
  858. <territory type="TM">Turkménsko</territory>
  859. <territory type="TN">Tunisko</territory>
  860. <territory type="TO">Tonga</territory>
  861. <territory type="TR">Turecko</territory>
  862. <territory type="TT">Trinidad a Tobago</territory>
  863. <territory type="TV">Tuvalu</territory>
  864. <territory type="TW">Taiwan</territory>
  865. <territory type="TZ">Tanzánia</territory>
  866. <territory type="UA">Ukrajina</territory>
  867. <territory type="UG">Uganda</territory>
  868. <territory type="UM">Menšie odľahlé ostrovy USA</territory>
  869. <territory type="US">Spojené štáty</territory>
  870. <territory type="US" alt="short" draft="contributed">USA</territory>
  871. <territory type="UY">Uruguaj</territory>
  872. <territory type="UZ">Uzbekistan</territory>
  873. <territory type="VA">Vatikán</territory>
  874. <territory type="VC">Svätý Vincent a Grenadíny</territory>
  875. <territory type="VE">Venezuela</territory>
  876. <territory type="VG">Britské panenské ostrovy</territory>
  877. <territory type="VI">Panenské ostrovy - USA</territory>
  878. <territory type="VN">Vietnam</territory>
  879. <territory type="VU">Vanuatu</territory>
  880. <territory type="WF">Wallis a Futuna</territory>
  881. <territory type="WS">Samoa</territory>
  882. <territory type="XK" draft="contributed">Kosovo</territory>
  883. <territory type="YE">Jemen</territory>
  884. <territory type="YT">Mayotte</territory>
  885. <territory type="ZA">Južná Afrika</territory>
  886. <territory type="ZM">Zambia</territory>
  887. <territory type="ZW">Zimbabwe</territory>
  888. <territory type="ZZ">Neznámy región</territory>
  889. </territories>
  890. <variants>
  891. <variant type="PINYIN" draft="provisional">romanizovaná mandarínčina</variant>
  892. <variant type="SCOTLAND" draft="contributed">škótska štandardná angličtina</variant>
  893. <variant type="WADEGILE" draft="provisional">romanizovaná mandarínčina Wade-Giles</variant>
  894. </variants>
  895. <keys>
  896. <key type="calendar">Kalendár</key>
  897. <key type="colAlternate" draft="contributed">Ignorovať radenie symbolov</key>
  898. <key type="colBackwards" draft="contributed">Obrátené radenie akcentov</key>
  899. <key type="colCaseFirst" draft="contributed">Radenie veľkých a malých písmen</key>
  900. <key type="colCaseLevel" draft="contributed">Rozlišovanie veľkých a malých písmen pri radení</key>
  901. <key type="colHiraganaQuaternary" draft="contributed">Radenie podľa slabičných písiem (kana)</key>
  902. <key type="collation">Triedenie</key>
  903. <key type="colNormalization" draft="contributed">Normalizované radenie</key>
  904. <key type="colNumeric" draft="contributed">Číselné radenie</key>
  905. <key type="colStrength" draft="contributed">Sila radenia</key>
  906. <key type="currency">Mena</key>
  907. <key type="numbers" draft="contributed">Číslice</key>
  908. <key type="timezone" draft="contributed">Časové pásmo</key>
  909. <key type="va" draft="contributed">Variant miestneho nastavenia</key>
  910. <key type="variableTop" draft="contributed">Radiť ako symboly</key>
  911. <key type="x" draft="contributed">Súkromné použitie</key>
  912. </keys>
  913. <types>
  914. <type type="arab" key="numbers" draft="contributed">Arabsko-indické číslice</type>
  915. <type type="arabext" key="numbers" draft="contributed">Rozšírené arabsko-indické číslice</type>
  916. <type type="armn" key="numbers" draft="contributed">Arménske číslice</type>
  917. <type type="armnlow" key="numbers" draft="contributed">Arménske číslice (malé písmená)</type>
  918. <type type="beng" key="numbers" draft="contributed">Bengálske číslice</type>
  919. <type type="big5han" key="collation" draft="contributed">Tradičný čínsky Big5</type>
  920. <type type="buddhist" key="calendar">Buddhistický kalendár</type>
  921. <type type="chinese" key="calendar">Čínsky kalendár</type>
  922. <type type="coptic" key="calendar" draft="contributed">Koptický kalendár</type>
  923. <type type="deva" key="numbers" draft="contributed">Číslice písma Dévanágarí</type>
  924. <type type="dictionary" key="collation" draft="contributed">Usporiadanie slovníka</type>
  925. <type type="ducet" key="collation" draft="contributed">Predvolené usporiadanie unicode</type>
  926. <type type="ethi" key="numbers" draft="contributed">Etiópske číslice</type>
  927. <type type="ethiopic" key="calendar" draft="contributed">Etiópsky kalendár</type>
  928. <type type="ethiopic-amete-alem" key="calendar" draft="contributed">Etiópsky kalendár Amete Alem</type>
  929. <type type="finance" key="numbers" draft="contributed">Finančnícky zápis čísiel</type>
  930. <type type="fullwide" key="numbers" draft="contributed">Číslice s celou šírkou</type>
  931. <type type="gb2312han" key="collation" draft="contributed">Zjednodušený čínsky GB2312</type>
  932. <type type="geor" key="numbers" draft="contributed">Gruzínske číslice</type>
  933. <type type="gregorian" key="calendar">Gregoriánsky kalendár</type>
  934. <type type="grek" key="numbers" draft="contributed">Grécke číslice</type>
  935. <type type="greklow" key="numbers" draft="contributed">Grécke číslice (malé písmená)</type>
  936. <type type="gujr" key="numbers" draft="contributed">Gudžarátske číslice</type>
  937. <type type="guru" key="numbers" draft="contributed">Číslice Gurmukhi</type>
  938. <type type="hanidec" key="numbers" draft="contributed">Čínske desatinné číslice</type>
  939. <type type="hans" key="numbers" draft="contributed">Číslice zjednodušenej čínštiny</type>
  940. <type type="hansfin" key="numbers" draft="contributed">Finančné číslice zjednodušenej čínštiny</type>
  941. <type type="hant" key="numbers" draft="contributed">Číslice tradičnej čínštiny</type>
  942. <type type="hantfin" key="numbers" draft="contributed">Finančné číslice tradičnej čínštiny</type>
  943. <type type="hebr" key="numbers" draft="contributed">Hebrejské číslice</type>
  944. <type type="hebrew" key="calendar">Židovský kalendár</type>
  945. <type type="identical" key="colStrength" draft="contributed">Radiť všetko</type>
  946. <type type="indian" key="calendar" draft="contributed">Indický národný kalendár</type>
  947. <type type="islamic" key="calendar">Islamský kalendár</type>
  948. <type type="islamic-civil" key="calendar">Islamský občiansky kalendár</type>
  949. <type type="japanese" key="calendar">Japonský kalendár</type>
  950. <type type="jpan" key="numbers" draft="contributed">Japonské číslice</type>
  951. <type type="jpanfin" key="numbers" draft="contributed">Japonské finančné číslice</type>
  952. <type type="khmr" key="numbers" draft="contributed">Khmérske číslice</type>
  953. <type type="knda" key="numbers" draft="contributed">Kannadské číslice</type>
  954. <type type="laoo" key="numbers" draft="contributed">Číslice písma lao</type>
  955. <type type="latn" key="numbers">Arabské číslice</type>
  956. <type type="lower" key="colCaseFirst" draft="contributed">Najprv radiť malé písmená</type>
  957. <type type="mlym" key="numbers" draft="contributed">Malajámske číslice</type>
  958. <type type="mong" key="numbers" draft="contributed">Mongolské číslice</type>
  959. <type type="mymr" key="numbers" draft="contributed">Mjanmarské číslice</type>
  960. <type type="native" key="numbers" draft="contributed">Natívne číslice</type>
  961. <type type="no" key="colBackwards" draft="contributed">Normálne radenie akcentov</type>
  962. <type type="no" key="colCaseFirst" draft="contributed">Normálne radenie veľkých a malých písmen</type>
  963. <type type="no" key="colCaseLevel" draft="contributed">Pri radení nerozlišovať veľké a malé písmená</type>
  964. <type type="no" key="colHiraganaQuaternary" draft="contributed">Radiť slabičné písma (kana) samostatne</type>
  965. <type type="no" key="colNormalization" draft="contributed">Radiť bez normalizácie</type>
  966. <type type="no" key="colNumeric" draft="contributed">Radiť číslice jednotlivo</type>
  967. <type type="non-ignorable" key="colAlternate" draft="contributed">Radiť symboly</type>
  968. <type type="orya" key="numbers" draft="contributed">Oríjske číslice</type>
  969. <type type="persian" key="calendar" draft="contributed">Perzský kalendár</type>
  970. <type type="phonebook" key="collation">Lexikografické triedenie</type>
  971. <type type="phonetic" key="collation" draft="contributed">Fonetické radenie</type>
  972. <type type="pinyin" key="collation">Triedenie pinyin</type>
  973. <type type="primary" key="colStrength" draft="contributed">Radiť iba základné písmená</type>
  974. <type type="quaternary" key="colStrength" draft="contributed">Radiť akcenty/veľké a malé písmená/šírku/kana</type>
  975. <type type="reformed" key="collation" draft="contributed">Reformované usporiadanie</type>
  976. <type type="roc" key="calendar" draft="contributed">Kalendár Čínskej republiky</type>
  977. <type type="roman" key="numbers" draft="contributed">Rímske číslice</type>
  978. <type type="romanlow" key="numbers" draft="contributed">Rímske číslice (malé písmená)</type>
  979. <type type="search" key="collation" draft="contributed">Všeobecné vyhľadávanie</type>
  980. <type type="searchjl" key="collation" draft="contributed">Hľadať podľa počiatočnej spoluhlásky písma Hangul</type>
  981. <type type="secondary" key="colStrength" draft="contributed">Radiť akcenty</type>
  982. <type type="shifted" key="colAlternate" draft="contributed">Pri radení ignorovať symboly</type>
  983. <type type="standard" key="collation" draft="contributed">Štandardné poradie</type>
  984. <type type="stroke" key="collation">Tiedenie podľa ťahov</type>
  985. <type type="taml" key="numbers" draft="contributed">Tamilské číslice</type>
  986. <type type="tamldec" key="numbers" draft="contributed">Tamilské číslice</type>
  987. <type type="telu" key="numbers" draft="contributed">Telugské číslice</type>
  988. <type type="tertiary" key="colStrength" draft="contributed">Radiť akcenty/veľké a malé písmená/šírku</type>
  989. <type type="thai" key="numbers" draft="contributed">Thajské číslice</type>
  990. <type type="tibt" key="numbers" draft="contributed">Tibetské číslice</type>
  991. <type type="traditional" key="collation">Tradičné</type>
  992. <type type="traditional" key="numbers" draft="contributed">Tradičné číslovky</type>
  993. <type type="unihan" key="collation" draft="contributed">Usporiadanie podľa znakov radikál</type>
  994. <type type="upper" key="colCaseFirst" draft="contributed">Najprv radiť veľké písmená</type>
  995. <type type="vaii" key="numbers" draft="contributed">Vaiské číslice</type>
  996. <type type="yes" key="colBackwards" draft="contributed">Radiť akcenty opačne</type>
  997. <type type="yes" key="colCaseLevel" draft="contributed">Pri radení rozlišovať veľké a malé písmená</type>
  998. <type type="yes" key="colHiraganaQuaternary" draft="contributed">Radiť slabičné písma (kana) inak</type>
  999. <type type="yes" key="colNormalization" draft="contributed">Radenie podľa normalizovaného kódovania Unicode</type>
  1000. <type type="yes" key="colNumeric" draft="contributed">Numerické radenie číslic</type>
  1001. </types>
  1002. <transformNames>
  1003. <transformName type="BGN" draft="contributed">BGN</transformName>
  1004. <transformName type="Numeric" draft="contributed">Číslice</transformName>
  1005. <transformName type="Tone" draft="contributed">Tón</transformName>
  1006. <transformName type="UNGEGN" draft="contributed">UNGEGN</transformName>
  1007. <transformName type="x-Accents" draft="contributed">Diakritika</transformName>
  1008. <transformName type="x-Fullwidth" draft="contributed">Celá šírka</transformName>
  1009. <transformName type="x-Halfwidth" draft="contributed">Polovičná šírka</transformName>
  1010. <transformName type="x-Jamo" draft="contributed">Jamo</transformName>
  1011. <transformName type="x-Pinyin" draft="contributed">Pinyin</transformName>
  1012. <transformName type="x-Publishing" draft="contributed">Uverejnenie</transformName>
  1013. </transformNames>
  1014. <measurementSystemNames>
  1015. <measurementSystemName type="metric">metrický</measurementSystemName>
  1016. <measurementSystemName type="UK">imperiálny</measurementSystemName>
  1017. <measurementSystemName type="US">americký</measurementSystemName>
  1018. </measurementSystemNames>
  1019. <codePatterns>
  1020. <codePattern type="language" draft="contributed">Jazyk: {0}</codePattern>
  1021. <codePattern type="script">Písmo: {0}</codePattern>
  1022. <codePattern type="territory" draft="contributed">Región: {0}</codePattern>
  1023. </codePatterns>
  1024. </localeDisplayNames>
  1025. <contextTransforms>
  1026. <contextTransformUsage type="day-format-except-narrow">
  1027. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1028. </contextTransformUsage>
  1029. <contextTransformUsage type="day-standalone-except-narrow">
  1030. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1031. </contextTransformUsage>
  1032. <contextTransformUsage type="languages">
  1033. <contextTransform type="stand-alone">titlecase-firstword</contextTransform>
  1034. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1035. </contextTransformUsage>
  1036. <contextTransformUsage type="month-format-except-narrow">
  1037. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1038. </contextTransformUsage>
  1039. <contextTransformUsage type="month-standalone-except-narrow">
  1040. <contextTransform type="uiListOrMenu">titlecase-firstword</contextTransform>
  1041. </contextTransformUsage>
  1042. </contextTransforms>
  1043. <characters>
  1044. <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>
  1045. <exemplarCharacters type="auxiliary" draft="contributed">[à ă â å ā æ ç è ĕ ê ë ē ì ĭ î ï ī ñ ò ŏ ö ø ō œ ř ù ŭ û ü ū ÿ]</exemplarCharacters>
  1046. <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>
  1047. <exemplarCharacters type="punctuation">[\- ‐ – , ; \: ! ? . … ‘ ‚ “ „ ( ) \[ \] § @ * / \&amp;]</exemplarCharacters>
  1048. <ellipsis type="final">{0}…</ellipsis>
  1049. <ellipsis type="initial">… {0}</ellipsis>
  1050. <ellipsis type="medial">{0}… {1}</ellipsis>
  1051. <ellipsis type="word-final" draft="contributed">{0} …</ellipsis>
  1052. <ellipsis type="word-initial" draft="contributed">… {0}</ellipsis>
  1053. <ellipsis type="word-medial" draft="contributed">{0} … {1}</ellipsis>
  1054. <moreInformation>?</moreInformation>
  1055. </characters>
  1056. <delimiters>
  1057. <quotationStart>„</quotationStart>
  1058. <quotationEnd>“</quotationEnd>
  1059. <alternateQuotationStart>‚</alternateQuotationStart>
  1060. <alternateQuotationEnd>‘</alternateQuotationEnd>
  1061. </delimiters>
  1062. <dates>
  1063. <calendars>
  1064. <calendar type="generic">
  1065. <dateFormats>
  1066. <dateFormatLength type="full">
  1067. <dateFormat>
  1068. <pattern>EEEE, d. MMMM y G</pattern>
  1069. </dateFormat>
  1070. </dateFormatLength>
  1071. <dateFormatLength type="long">
  1072. <dateFormat>
  1073. <pattern>d. MMMM y G</pattern>
  1074. </dateFormat>
  1075. </dateFormatLength>
  1076. <dateFormatLength type="medium">
  1077. <dateFormat>
  1078. <pattern>d.M.y G</pattern>
  1079. </dateFormat>
  1080. </dateFormatLength>
  1081. <dateFormatLength type="short">
  1082. <dateFormat>
  1083. <pattern>d.M.y GGGGG</pattern>
  1084. </dateFormat>
  1085. </dateFormatLength>
  1086. </dateFormats>
  1087. <dateTimeFormats>
  1088. <dateTimeFormatLength type="full">
  1089. <dateTimeFormat>
  1090. <pattern>{1} {0}</pattern>
  1091. </dateTimeFormat>
  1092. </dateTimeFormatLength>
  1093. <dateTimeFormatLength type="long">
  1094. <dateTimeFormat>
  1095. <pattern>{1} {0}</pattern>
  1096. </dateTimeFormat>
  1097. </dateTimeFormatLength>
  1098. <dateTimeFormatLength type="medium">
  1099. <dateTimeFormat>
  1100. <pattern>{1} {0}</pattern>
  1101. </dateTimeFormat>
  1102. </dateTimeFormatLength>
  1103. <dateTimeFormatLength type="short">
  1104. <dateTimeFormat>
  1105. <pattern>{1} {0}</pattern>
  1106. </dateTimeFormat>
  1107. </dateTimeFormatLength>
  1108. <availableFormats>
  1109. <dateFormatItem id="d">d.</dateFormatItem>
  1110. <dateFormatItem id="Ed">E d.</dateFormatItem>
  1111. <dateFormatItem id="Gy">y G</dateFormatItem>
  1112. <dateFormatItem id="GyMMM">LLL y G</dateFormatItem>
  1113. <dateFormatItem id="GyMMMd" draft="contributed">d.M.y G</dateFormatItem>
  1114. <dateFormatItem id="GyMMMEd">E, d. MMM y G</dateFormatItem>
  1115. <dateFormatItem id="GyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
  1116. <dateFormatItem id="h">h a</dateFormatItem>
  1117. <dateFormatItem id="H">H</dateFormatItem>
  1118. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1119. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1120. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1121. <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
  1122. <dateFormatItem id="M" draft="contributed">L.</dateFormatItem>
  1123. <dateFormatItem id="Md">d.M.</dateFormatItem>
  1124. <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
  1125. <dateFormatItem id="MMM" draft="contributed">LLL</dateFormatItem>
  1126. <dateFormatItem id="MMMd">d. MMM.</dateFormatItem>
  1127. <dateFormatItem id="MMMEd">E, d. MMM.</dateFormatItem>
  1128. <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
  1129. <dateFormatItem id="MMMMEd">E, d. MMMM</dateFormatItem>
  1130. <dateFormatItem id="mmss">mm:ss</dateFormatItem>
  1131. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1132. <dateFormatItem id="y">y G</dateFormatItem>
  1133. <dateFormatItem id="yyyy">y G</dateFormatItem>
  1134. <dateFormatItem id="yyyyM">M.y G</dateFormatItem>
  1135. <dateFormatItem id="yyyyMd" draft="contributed">d.M.y G</dateFormatItem>
  1136. <dateFormatItem id="yyyyMEd">E d. M. y G</dateFormatItem>
  1137. <dateFormatItem id="yyyyMMM">LLL y G</dateFormatItem>
  1138. <dateFormatItem id="yyyyMMMd" draft="contributed">d.M.y G</dateFormatItem>
  1139. <dateFormatItem id="yyyyMMMEd">E, d. MMM y G</dateFormatItem>
  1140. <dateFormatItem id="yyyyMMMM">LLLL y G</dateFormatItem>
  1141. <dateFormatItem id="yyyyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
  1142. <dateFormatItem id="yyyyQQQ">QQQ y G</dateFormatItem>
  1143. <dateFormatItem id="yyyyQQQQ">QQQQ y G</dateFormatItem>
  1144. </availableFormats>
  1145. <intervalFormats>
  1146. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1147. <intervalFormatItem id="d">
  1148. <greatestDifference id="d">d. – d.</greatestDifference>
  1149. </intervalFormatItem>
  1150. <intervalFormatItem id="h">
  1151. <greatestDifference id="a">h a – h a</greatestDifference>
  1152. <greatestDifference id="h">h – h a</greatestDifference>
  1153. </intervalFormatItem>
  1154. <intervalFormatItem id="H">
  1155. <greatestDifference id="H">HH – HH</greatestDifference>
  1156. </intervalFormatItem>
  1157. <intervalFormatItem id="hm">
  1158. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  1159. <greatestDifference id="h">h:mm - h:mm a</greatestDifference>
  1160. <greatestDifference id="m">h:mm - h:mm a</greatestDifference>
  1161. </intervalFormatItem>
  1162. <intervalFormatItem id="Hm">
  1163. <greatestDifference id="H">H:mm – H:mm</greatestDifference>
  1164. <greatestDifference id="m">H:mm – H:mm</greatestDifference>
  1165. </intervalFormatItem>
  1166. <intervalFormatItem id="hmv">
  1167. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  1168. <greatestDifference id="h">h:mm - h:mm a v</greatestDifference>
  1169. <greatestDifference id="m">h:mm - h:mm a v</greatestDifference>
  1170. </intervalFormatItem>
  1171. <intervalFormatItem id="Hmv">
  1172. <greatestDifference id="H">H:mm – H:mm v</greatestDifference>
  1173. <greatestDifference id="m">H:mm – H:mm v</greatestDifference>
  1174. </intervalFormatItem>
  1175. <intervalFormatItem id="hv">
  1176. <greatestDifference id="a" draft="contributed">h a - h a v</greatestDifference>
  1177. <greatestDifference id="h">h – h a v</greatestDifference>
  1178. </intervalFormatItem>
  1179. <intervalFormatItem id="Hv">
  1180. <greatestDifference id="H">HH – HH v</greatestDifference>
  1181. </intervalFormatItem>
  1182. <intervalFormatItem id="M">
  1183. <greatestDifference id="M">M. – M.</greatestDifference>
  1184. </intervalFormatItem>
  1185. <intervalFormatItem id="Md">
  1186. <greatestDifference id="d">d.M. - d.M.</greatestDifference>
  1187. <greatestDifference id="M">d.M. - d.M.</greatestDifference>
  1188. </intervalFormatItem>
  1189. <intervalFormatItem id="MEd">
  1190. <greatestDifference id="d">E, d.M. - E, d.M.</greatestDifference>
  1191. <greatestDifference id="M">E, d.M. - E, d.M.</greatestDifference>
  1192. </intervalFormatItem>
  1193. <intervalFormatItem id="MMM">
  1194. <greatestDifference id="M">LLL – LLL</greatestDifference>
  1195. </intervalFormatItem>
  1196. <intervalFormatItem id="MMMd">
  1197. <greatestDifference id="d">d. - d. MMM</greatestDifference>
  1198. <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
  1199. </intervalFormatItem>
  1200. <intervalFormatItem id="MMMEd">
  1201. <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
  1202. <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
  1203. </intervalFormatItem>
  1204. <intervalFormatItem id="MMMM">
  1205. <greatestDifference id="M" draft="contributed">LLLL-LLLL</greatestDifference>
  1206. </intervalFormatItem>
  1207. <intervalFormatItem id="y">
  1208. <greatestDifference id="y">y - y G</greatestDifference>
  1209. </intervalFormatItem>
  1210. <intervalFormatItem id="yM">
  1211. <greatestDifference id="M">M.y - M.y G</greatestDifference>
  1212. <greatestDifference id="y">M.y - M.y G</greatestDifference>
  1213. </intervalFormatItem>
  1214. <intervalFormatItem id="yMd">
  1215. <greatestDifference id="d">d.M.y - d.M.y G</greatestDifference>
  1216. <greatestDifference id="M">d.M.y - d.M.y G</greatestDifference>
  1217. <greatestDifference id="y">d.M.y - d.M.y G</greatestDifference>
  1218. </intervalFormatItem>
  1219. <intervalFormatItem id="yMEd">
  1220. <greatestDifference id="d">E, d.M.y - E, d.M.y G</greatestDifference>
  1221. <greatestDifference id="M">E, d.M.y - E, d.M.y G</greatestDifference>
  1222. <greatestDifference id="y">E, d.M.y - E, d.M.y G</greatestDifference>
  1223. </intervalFormatItem>
  1224. <intervalFormatItem id="yMMM">
  1225. <greatestDifference id="M">LLL - LLL y G</greatestDifference>
  1226. <greatestDifference id="y">LLL y - LLL y G</greatestDifference>
  1227. </intervalFormatItem>
  1228. <intervalFormatItem id="yMMMd">
  1229. <greatestDifference id="d">d. - d. MMM y G</greatestDifference>
  1230. <greatestDifference id="M">d. MMM - d. MMM y G</greatestDifference>
  1231. <greatestDifference id="y">d. MMM y - d. MMM y G</greatestDifference>
  1232. </intervalFormatItem>
  1233. <intervalFormatItem id="yMMMEd">
  1234. <greatestDifference id="d">E, d. - E, d. MMM y G</greatestDifference>
  1235. <greatestDifference id="M">E, d. MMM - E, d. MMM y G</greatestDifference>
  1236. <greatestDifference id="y">E, d. MMM y - E, d. MMM y G</greatestDifference>
  1237. </intervalFormatItem>
  1238. <intervalFormatItem id="yMMMM">
  1239. <greatestDifference id="M">LLLL - LLLL y G</greatestDifference>
  1240. <greatestDifference id="y">LLLL y - LLLL y G</greatestDifference>
  1241. </intervalFormatItem>
  1242. </intervalFormats>
  1243. </dateTimeFormats>
  1244. </calendar>
  1245. <calendar type="gregorian">
  1246. <months>
  1247. <monthContext type="format">
  1248. <monthWidth type="abbreviated">
  1249. <month type="1">jan</month>
  1250. <month type="2">feb</month>
  1251. <month type="3">mar</month>
  1252. <month type="4">apr</month>
  1253. <month type="5">máj</month>
  1254. <month type="6">jún</month>
  1255. <month type="7">júl</month>
  1256. <month type="8">aug</month>
  1257. <month type="9">sep</month>
  1258. <month type="10">okt</month>
  1259. <month type="11">nov</month>
  1260. <month type="12">dec</month>
  1261. </monthWidth>
  1262. <monthWidth type="wide">
  1263. <month type="1">januára</month>
  1264. <month type="2">februára</month>
  1265. <month type="3">marca</month>
  1266. <month type="4">apríla</month>
  1267. <month type="5">mája</month>
  1268. <month type="6">júna</month>
  1269. <month type="7">júla</month>
  1270. <month type="8">augusta</month>
  1271. <month type="9">septembra</month>
  1272. <month type="10">októbra</month>
  1273. <month type="11">novembra</month>
  1274. <month type="12">decembra</month>
  1275. </monthWidth>
  1276. </monthContext>
  1277. <monthContext type="stand-alone">
  1278. <monthWidth type="narrow">
  1279. <month type="1">j</month>
  1280. <month type="2">f</month>
  1281. <month type="3">m</month>
  1282. <month type="4">a</month>
  1283. <month type="5">m</month>
  1284. <month type="6">j</month>
  1285. <month type="7">j</month>
  1286. <month type="8">a</month>
  1287. <month type="9">s</month>
  1288. <month type="10">o</month>
  1289. <month type="11">n</month>
  1290. <month type="12">d</month>
  1291. </monthWidth>
  1292. <monthWidth type="wide">
  1293. <month type="1">január</month>
  1294. <month type="2">február</month>
  1295. <month type="3">marec</month>
  1296. <month type="4">apríl</month>
  1297. <month type="5">máj</month>
  1298. <month type="6">jún</month>
  1299. <month type="7">júl</month>
  1300. <month type="8">august</month>
  1301. <month type="9">september</month>
  1302. <month type="10">október</month>
  1303. <month type="11">november</month>
  1304. <month type="12">december</month>
  1305. </monthWidth>
  1306. </monthContext>
  1307. </months>
  1308. <days>
  1309. <dayContext type="format">
  1310. <dayWidth type="abbreviated">
  1311. <day type="sun">ne</day>
  1312. <day type="mon">po</day>
  1313. <day type="tue">ut</day>
  1314. <day type="wed">st</day>
  1315. <day type="thu">št</day>
  1316. <day type="fri">pi</day>
  1317. <day type="sat">so</day>
  1318. </dayWidth>
  1319. <dayWidth type="narrow">
  1320. <day type="sun" draft="contributed">N</day>
  1321. <day type="mon" draft="contributed">P</day>
  1322. <day type="tue" draft="contributed">U</day>
  1323. <day type="wed" draft="contributed">S</day>
  1324. <day type="thu" draft="contributed">Š</day>
  1325. <day type="fri" draft="contributed">P</day>
  1326. <day type="sat" draft="contributed">S</day>
  1327. </dayWidth>
  1328. <dayWidth type="short">
  1329. <day type="sun">Ne</day>
  1330. <day type="mon">Po</day>
  1331. <day type="tue">Ut</day>
  1332. <day type="wed">St</day>
  1333. <day type="thu">Št</day>
  1334. <day type="fri">Pi</day>
  1335. <day type="sat">So</day>
  1336. </dayWidth>
  1337. <dayWidth type="wide">
  1338. <day type="sun">nedeľa</day>
  1339. <day type="mon">pondelok</day>
  1340. <day type="tue">utorok</day>
  1341. <day type="wed">streda</day>
  1342. <day type="thu">štvrtok</day>
  1343. <day type="fri">piatok</day>
  1344. <day type="sat">sobota</day>
  1345. </dayWidth>
  1346. </dayContext>
  1347. <dayContext type="stand-alone">
  1348. <dayWidth type="abbreviated">
  1349. <day type="sun" draft="contributed">ne</day>
  1350. <day type="mon" draft="contributed">po</day>
  1351. <day type="tue" draft="contributed">ut</day>
  1352. <day type="wed" draft="contributed">st</day>
  1353. <day type="thu" draft="contributed">št</day>
  1354. <day type="fri" draft="contributed">pi</day>
  1355. <day type="sat" draft="contributed">so</day>
  1356. </dayWidth>
  1357. <dayWidth type="narrow">
  1358. <day type="sun">N</day>
  1359. <day type="mon">P</day>
  1360. <day type="tue">U</day>
  1361. <day type="wed">S</day>
  1362. <day type="thu">Š</day>
  1363. <day type="fri">P</day>
  1364. <day type="sat">S</day>
  1365. </dayWidth>
  1366. <dayWidth type="short">
  1367. <day type="sun">Ne</day>
  1368. <day type="mon">Po</day>
  1369. <day type="tue">Ut</day>
  1370. <day type="wed">St</day>
  1371. <day type="thu">Št</day>
  1372. <day type="fri">Pi</day>
  1373. <day type="sat">So</day>
  1374. </dayWidth>
  1375. <dayWidth type="wide">
  1376. <day type="sun" draft="contributed">nedeľa</day>
  1377. <day type="mon" draft="contributed">pondelok</day>
  1378. <day type="tue" draft="contributed">utorok</day>
  1379. <day type="wed" draft="contributed">streda</day>
  1380. <day type="thu" draft="contributed">štvrtok</day>
  1381. <day type="fri" draft="contributed">piatok</day>
  1382. <day type="sat" draft="contributed">sobota</day>
  1383. </dayWidth>
  1384. </dayContext>
  1385. </days>
  1386. <quarters>
  1387. <quarterContext type="format">
  1388. <quarterWidth type="abbreviated">
  1389. <quarter type="1">Q1</quarter>
  1390. <quarter type="2">Q2</quarter>
  1391. <quarter type="3">Q3</quarter>
  1392. <quarter type="4">Q4</quarter>
  1393. </quarterWidth>
  1394. <quarterWidth type="narrow">
  1395. <quarter type="1">1</quarter>
  1396. <quarter type="2">2</quarter>
  1397. <quarter type="3">3</quarter>
  1398. <quarter type="4">4</quarter>
  1399. </quarterWidth>
  1400. <quarterWidth type="wide">
  1401. <quarter type="1">1. štvrťrok</quarter>
  1402. <quarter type="2">2. štvrťrok</quarter>
  1403. <quarter type="3">3. štvrťrok</quarter>
  1404. <quarter type="4">4. štvrťrok</quarter>
  1405. </quarterWidth>
  1406. </quarterContext>
  1407. <quarterContext type="stand-alone">
  1408. <quarterWidth type="abbreviated">
  1409. <quarter type="1" draft="contributed">1Q</quarter>
  1410. <quarter type="2" draft="contributed">2Q</quarter>
  1411. <quarter type="3" draft="contributed">3Q</quarter>
  1412. <quarter type="4" draft="contributed">4Q</quarter>
  1413. </quarterWidth>
  1414. <quarterWidth type="narrow">
  1415. <quarter type="1">1</quarter>
  1416. <quarter type="2">2</quarter>
  1417. <quarter type="3">3</quarter>
  1418. <quarter type="4">4</quarter>
  1419. </quarterWidth>
  1420. <quarterWidth type="wide">
  1421. <quarter type="1" draft="contributed">1. štvrťrok</quarter>
  1422. <quarter type="2" draft="contributed">2. štvrťrok</quarter>
  1423. <quarter type="3" draft="contributed">3. štvrťrok</quarter>
  1424. <quarter type="4" draft="contributed">4. štvrťrok</quarter>
  1425. </quarterWidth>
  1426. </quarterContext>
  1427. </quarters>
  1428. <dayPeriods>
  1429. <dayPeriodContext type="format">
  1430. <dayPeriodWidth type="wide">
  1431. <dayPeriod type="am">AM</dayPeriod>
  1432. <dayPeriod type="pm">PM</dayPeriod>
  1433. </dayPeriodWidth>
  1434. </dayPeriodContext>
  1435. </dayPeriods>
  1436. <eras>
  1437. <eraAbbr>
  1438. <era type="0">pred n.l.</era>
  1439. <era type="1">n.l.</era>
  1440. </eraAbbr>
  1441. </eras>
  1442. <dateFormats>
  1443. <dateFormatLength type="full">
  1444. <dateFormat>
  1445. <pattern>EEEE, d. MMMM y</pattern>
  1446. </dateFormat>
  1447. </dateFormatLength>
  1448. <dateFormatLength type="long">
  1449. <dateFormat>
  1450. <pattern>d. MMMM y</pattern>
  1451. </dateFormat>
  1452. </dateFormatLength>
  1453. <dateFormatLength type="medium">
  1454. <dateFormat>
  1455. <pattern>d.M.y</pattern>
  1456. </dateFormat>
  1457. </dateFormatLength>
  1458. <dateFormatLength type="short">
  1459. <dateFormat>
  1460. <pattern>d.M.y</pattern>
  1461. </dateFormat>
  1462. </dateFormatLength>
  1463. </dateFormats>
  1464. <timeFormats>
  1465. <timeFormatLength type="full">
  1466. <timeFormat>
  1467. <pattern>H:mm:ss zzzz</pattern>
  1468. </timeFormat>
  1469. </timeFormatLength>
  1470. <timeFormatLength type="long">
  1471. <timeFormat>
  1472. <pattern>H:mm:ss z</pattern>
  1473. </timeFormat>
  1474. </timeFormatLength>
  1475. <timeFormatLength type="medium">
  1476. <timeFormat>
  1477. <pattern>H:mm:ss</pattern>
  1478. </timeFormat>
  1479. </timeFormatLength>
  1480. <timeFormatLength type="short">
  1481. <timeFormat>
  1482. <pattern>H:mm</pattern>
  1483. </timeFormat>
  1484. </timeFormatLength>
  1485. </timeFormats>
  1486. <dateTimeFormats>
  1487. <dateTimeFormatLength type="full">
  1488. <dateTimeFormat>
  1489. <pattern>{1} {0}</pattern>
  1490. </dateTimeFormat>
  1491. </dateTimeFormatLength>
  1492. <dateTimeFormatLength type="long">
  1493. <dateTimeFormat>
  1494. <pattern>{1} {0}</pattern>
  1495. </dateTimeFormat>
  1496. </dateTimeFormatLength>
  1497. <dateTimeFormatLength type="medium">
  1498. <dateTimeFormat>
  1499. <pattern>{1} {0}</pattern>
  1500. </dateTimeFormat>
  1501. </dateTimeFormatLength>
  1502. <dateTimeFormatLength type="short">
  1503. <dateTimeFormat>
  1504. <pattern>{1} {0}</pattern>
  1505. </dateTimeFormat>
  1506. </dateTimeFormatLength>
  1507. <availableFormats>
  1508. <dateFormatItem id="d">d.</dateFormatItem>
  1509. <dateFormatItem id="Ed">E d.</dateFormatItem>
  1510. <dateFormatItem id="Ehm" draft="contributed">E h:mm</dateFormatItem>
  1511. <dateFormatItem id="EHm" draft="contributed">E HH:mm</dateFormatItem>
  1512. <dateFormatItem id="Ehms" draft="contributed">E h:mm:ss</dateFormatItem>
  1513. <dateFormatItem id="EHms" draft="contributed">E HH:mm:ss</dateFormatItem>
  1514. <dateFormatItem id="Gy" draft="contributed">y G</dateFormatItem>
  1515. <dateFormatItem id="GyMMM" draft="contributed">LLL y G</dateFormatItem>
  1516. <dateFormatItem id="GyMMMd" draft="contributed">d.M.y G</dateFormatItem>
  1517. <dateFormatItem id="GyMMMEd" draft="contributed">E, d. MMM y G</dateFormatItem>
  1518. <dateFormatItem id="GyMMMMd" draft="contributed">d. MMMM y G</dateFormatItem>
  1519. <dateFormatItem id="h">h a</dateFormatItem>
  1520. <dateFormatItem id="H">H</dateFormatItem>
  1521. <dateFormatItem id="hm">h:mm a</dateFormatItem>
  1522. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1523. <dateFormatItem id="hms">h:mm:ss a</dateFormatItem>
  1524. <dateFormatItem id="Hms">H:mm:ss</dateFormatItem>
  1525. <dateFormatItem id="M" draft="contributed">L.</dateFormatItem>
  1526. <dateFormatItem id="Md">d.M.</dateFormatItem>
  1527. <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
  1528. <dateFormatItem id="MMM" draft="contributed">LLL</dateFormatItem>
  1529. <dateFormatItem id="MMMd">d. MMM.</dateFormatItem>
  1530. <dateFormatItem id="MMMEd">E, d. MMM.</dateFormatItem>
  1531. <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
  1532. <dateFormatItem id="MMMMEd">E, d. MMMM</dateFormatItem>
  1533. <dateFormatItem id="mmss">mm:ss</dateFormatItem>
  1534. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1535. <dateFormatItem id="y">y</dateFormatItem>
  1536. <dateFormatItem id="yM">M.y</dateFormatItem>
  1537. <dateFormatItem id="yMd">d.M.y</dateFormatItem>
  1538. <dateFormatItem id="yMEd">E d. M. y</dateFormatItem>
  1539. <dateFormatItem id="yMMM">LLL y</dateFormatItem>
  1540. <dateFormatItem id="yMMMd">d.M.y</dateFormatItem>
  1541. <dateFormatItem id="yMMMEd">E, d. MMM y</dateFormatItem>
  1542. <dateFormatItem id="yMMMM">LLLL y</dateFormatItem>
  1543. <dateFormatItem id="yMMMMd">d. MMMM y</dateFormatItem>
  1544. <dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
  1545. <dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
  1546. </availableFormats>
  1547. <appendItems>
  1548. <appendItem request="Timezone" draft="contributed">{0} {1}</appendItem>
  1549. </appendItems>
  1550. <intervalFormats>
  1551. <intervalFormatFallback>{0} – {1}</intervalFormatFallback>
  1552. <intervalFormatItem id="d">
  1553. <greatestDifference id="d">d. – d.</greatestDifference>
  1554. </intervalFormatItem>
  1555. <intervalFormatItem id="h">
  1556. <greatestDifference id="a">h a – h a</greatestDifference>
  1557. <greatestDifference id="h">h – h a</greatestDifference>
  1558. </intervalFormatItem>
  1559. <intervalFormatItem id="H">
  1560. <greatestDifference id="H">HH – HH</greatestDifference>
  1561. </intervalFormatItem>
  1562. <intervalFormatItem id="hm">
  1563. <greatestDifference id="a">h:mm a - h:mm a</greatestDifference>
  1564. <greatestDifference id="h">h:mm - h:mm a</greatestDifference>
  1565. <greatestDifference id="m">h:mm - h:mm a</greatestDifference>
  1566. </intervalFormatItem>
  1567. <intervalFormatItem id="Hm">
  1568. <greatestDifference id="H">H:mm – H:mm</greatestDifference>
  1569. <greatestDifference id="m">H:mm – H:mm</greatestDifference>
  1570. </intervalFormatItem>
  1571. <intervalFormatItem id="hmv">
  1572. <greatestDifference id="a">h:mm a - h:mm a v</greatestDifference>
  1573. <greatestDifference id="h">h:mm - h:mm a v</greatestDifference>
  1574. <greatestDifference id="m">h:mm - h:mm a v</greatestDifference>
  1575. </intervalFormatItem>
  1576. <intervalFormatItem id="Hmv">
  1577. <greatestDifference id="H">H:mm – H:mm v</greatestDifference>
  1578. <greatestDifference id="m">H:mm – H:mm v</greatestDifference>
  1579. </intervalFormatItem>
  1580. <intervalFormatItem id="hv">
  1581. <greatestDifference id="a" draft="contributed">h a - h a v</greatestDifference>
  1582. <greatestDifference id="h">h – h a v</greatestDifference>
  1583. </intervalFormatItem>
  1584. <intervalFormatItem id="Hv">
  1585. <greatestDifference id="H">HH – HH v</greatestDifference>
  1586. </intervalFormatItem>
  1587. <intervalFormatItem id="M">
  1588. <greatestDifference id="M">M. – M.</greatestDifference>
  1589. </intervalFormatItem>
  1590. <intervalFormatItem id="Md">
  1591. <greatestDifference id="d">d.M. - d.M.</greatestDifference>
  1592. <greatestDifference id="M">d.M. - d.M.</greatestDifference>
  1593. </intervalFormatItem>
  1594. <intervalFormatItem id="MEd">
  1595. <greatestDifference id="d">E, d.M. - E, d.M.</greatestDifference>
  1596. <greatestDifference id="M">E, d.M. - E, d.M.</greatestDifference>
  1597. </intervalFormatItem>
  1598. <intervalFormatItem id="MMM">
  1599. <greatestDifference id="M">LLL – LLL</greatestDifference>
  1600. </intervalFormatItem>
  1601. <intervalFormatItem id="MMMd">
  1602. <greatestDifference id="d">d. - d. MMM</greatestDifference>
  1603. <greatestDifference id="M">d. MMM - d. MMM</greatestDifference>
  1604. </intervalFormatItem>
  1605. <intervalFormatItem id="MMMEd">
  1606. <greatestDifference id="d">E, d. - E, d. MMM</greatestDifference>
  1607. <greatestDifference id="M">E, d. MMM - E, d. MMM</greatestDifference>
  1608. </intervalFormatItem>
  1609. <intervalFormatItem id="MMMM">
  1610. <greatestDifference id="M" draft="contributed">LLLL-LLLL</greatestDifference>
  1611. </intervalFormatItem>
  1612. <intervalFormatItem id="y">
  1613. <greatestDifference id="y">y - y</greatestDifference>
  1614. </intervalFormatItem>
  1615. <intervalFormatItem id="yM">
  1616. <greatestDifference id="M">M.y - M.y</greatestDifference>
  1617. <greatestDifference id="y">M.y - M.y</greatestDifference>
  1618. </intervalFormatItem>
  1619. <intervalFormatItem id="yMd">
  1620. <greatestDifference id="d">d.M.y - d.M.y</greatestDifference>
  1621. <greatestDifference id="M">d.M.y - d.M.y</greatestDifference>
  1622. <greatestDifference id="y">d.M.y - d.M.y</greatestDifference>
  1623. </intervalFormatItem>
  1624. <intervalFormatItem id="yMEd">
  1625. <greatestDifference id="d">E, d.M.y - E, d.M.y</greatestDifference>
  1626. <greatestDifference id="M">E, d.M.y - E, d.M.y</greatestDifference>
  1627. <greatestDifference id="y">E, d.M.y - E, d.M.y</greatestDifference>
  1628. </intervalFormatItem>
  1629. <intervalFormatItem id="yMMM">
  1630. <greatestDifference id="M">LLL - LLL y</greatestDifference>
  1631. <greatestDifference id="y">LLL y - LLL y</greatestDifference>
  1632. </intervalFormatItem>
  1633. <intervalFormatItem id="yMMMd">
  1634. <greatestDifference id="d">d. - d. MMM y</greatestDifference>
  1635. <greatestDifference id="M">d. MMM - d. MMM y</greatestDifference>
  1636. <greatestDifference id="y">d. MMM y - d. MMM y</greatestDifference>
  1637. </intervalFormatItem>
  1638. <intervalFormatItem id="yMMMEd">
  1639. <greatestDifference id="d">E, d. - E, d. MMM y</greatestDifference>
  1640. <greatestDifference id="M">E, d. MMM - E, d. MMM y</greatestDifference>
  1641. <greatestDifference id="y">E, d. MMM y - E, d. MMM y</greatestDifference>
  1642. </intervalFormatItem>
  1643. <intervalFormatItem id="yMMMM">
  1644. <greatestDifference id="M">LLLL - LLLL y</greatestDifference>
  1645. <greatestDifference id="y">LLLL y - LLLL y</greatestDifference>
  1646. </intervalFormatItem>
  1647. </intervalFormats>
  1648. </dateTimeFormats>
  1649. </calendar>
  1650. </calendars>
  1651. <fields>
  1652. <field type="era">
  1653. <displayName>Éra</displayName>
  1654. </field>
  1655. <field type="year">
  1656. <displayName>Rok</displayName>
  1657. <relative type="-1">Minulý rok</relative>
  1658. <relative type="0">Tento rok</relative>
  1659. <relative type="1">Budúci rok</relative>
  1660. <relativeTime type="future">
  1661. <relativeTimePattern count="one">O {0} rok</relativeTimePattern>
  1662. <relativeTimePattern count="few">O {0} roky</relativeTimePattern>
  1663. <relativeTimePattern count="many">O {0} roka</relativeTimePattern>
  1664. <relativeTimePattern count="other">O {0} rokov</relativeTimePattern>
  1665. </relativeTime>
  1666. <relativeTime type="past">
  1667. <relativeTimePattern count="one">Pred {0} rokom</relativeTimePattern>
  1668. <relativeTimePattern count="few">Pred {0} rokmi</relativeTimePattern>
  1669. <relativeTimePattern count="many">Pred {0} rokmi</relativeTimePattern>
  1670. <relativeTimePattern count="other">Pred {0} rokmi</relativeTimePattern>
  1671. </relativeTime>
  1672. </field>
  1673. <field type="month">
  1674. <displayName>Mesiac</displayName>
  1675. <relative type="-1" draft="contributed">Posledný mesiac</relative>
  1676. <relative type="0">Tento mesiac</relative>
  1677. <relative type="1">Budúci mesiac</relative>
  1678. <relativeTime type="future">
  1679. <relativeTimePattern count="one">O {0} mesiac</relativeTimePattern>
  1680. <relativeTimePattern count="few">O {0} mesiace</relativeTimePattern>
  1681. <relativeTimePattern count="many">O {0} mesiaca</relativeTimePattern>
  1682. <relativeTimePattern count="other">O {0} mesiacov</relativeTimePattern>
  1683. </relativeTime>
  1684. <relativeTime type="past">
  1685. <relativeTimePattern count="one">Pred {0} mesiacom</relativeTimePattern>
  1686. <relativeTimePattern count="few">Pred {0} mesiacmi</relativeTimePattern>
  1687. <relativeTimePattern count="many">Pred {0} mesiacmi</relativeTimePattern>
  1688. <relativeTimePattern count="other">Pred {0} mesiacmi</relativeTimePattern>
  1689. </relativeTime>
  1690. </field>
  1691. <field type="week">
  1692. <displayName>Týždeň</displayName>
  1693. <relative type="-1">Minulý týždeň</relative>
  1694. <relative type="0">Tento týždeň</relative>
  1695. <relative type="1">Budúci týždeň</relative>
  1696. <relativeTime type="future">
  1697. <relativeTimePattern count="one">O {0} týždeň</relativeTimePattern>
  1698. <relativeTimePattern count="few">O {0} týždne</relativeTimePattern>
  1699. <relativeTimePattern count="many">O {0} týždňa</relativeTimePattern>
  1700. <relativeTimePattern count="other">O {0} týždňov</relativeTimePattern>
  1701. </relativeTime>
  1702. <relativeTime type="past">
  1703. <relativeTimePattern count="one">Pred {0} týždňom</relativeTimePattern>
  1704. <relativeTimePattern count="few">Pred {0} týždňami</relativeTimePattern>
  1705. <relativeTimePattern count="many">Pred {0} týždňami</relativeTimePattern>
  1706. <relativeTimePattern count="other">Pred {0} týždňami</relativeTimePattern>
  1707. </relativeTime>
  1708. </field>
  1709. <field type="day">
  1710. <displayName>Deň</displayName>
  1711. <relative type="-2">Predvčerom</relative>
  1712. <relative type="-1">Včera</relative>
  1713. <relative type="0">Dnes</relative>
  1714. <relative type="1">Zajtra</relative>
  1715. <relative type="2">Pozajtra</relative>
  1716. <relativeTime type="future">
  1717. <relativeTimePattern count="one">O {0} deň</relativeTimePattern>
  1718. <relativeTimePattern count="few">O {0} dni</relativeTimePattern>
  1719. <relativeTimePattern count="many">O {0} dňa</relativeTimePattern>
  1720. <relativeTimePattern count="other">O {0} dní</relativeTimePattern>
  1721. </relativeTime>
  1722. <relativeTime type="past">
  1723. <relativeTimePattern count="one">Pred {0} dňom</relativeTimePattern>
  1724. <relativeTimePattern count="few">Pred {0} dňami</relativeTimePattern>
  1725. <relativeTimePattern count="many">Pred {0} dňami</relativeTimePattern>
  1726. <relativeTimePattern count="other">Pred {0} dňami</relativeTimePattern>
  1727. </relativeTime>
  1728. </field>
  1729. <field type="weekday">
  1730. <displayName>Deň v týždni</displayName>
  1731. </field>
  1732. <field type="sun">
  1733. <relative type="-1" draft="contributed">Minulú nedeľu</relative>
  1734. <relative type="0" draft="contributed">Túto nedeľu</relative>
  1735. <relative type="1" draft="contributed">Budúcu nedeľu</relative>
  1736. </field>
  1737. <field type="mon">
  1738. <relative type="-1" draft="contributed">Minulý pondelok</relative>
  1739. <relative type="0" draft="contributed">Tento pondelok</relative>
  1740. <relative type="1" draft="contributed">Budúci pondelok</relative>
  1741. </field>
  1742. <field type="tue">
  1743. <relative type="-1" draft="contributed">Minulý utorok</relative>
  1744. <relative type="0" draft="contributed">Tento utorok</relative>
  1745. <relative type="1" draft="contributed">Budúci utorok</relative>
  1746. </field>
  1747. <field type="wed">
  1748. <relative type="-1" draft="contributed">Minulú stredu</relative>
  1749. <relative type="0" draft="contributed">Túto stredu</relative>
  1750. <relative type="1" draft="contributed">Budúcu stredu</relative>
  1751. </field>
  1752. <field type="thu">
  1753. <relative type="-1" draft="contributed">Minulý štvrtok</relative>
  1754. <relative type="0" draft="contributed">Tento štvrtok</relative>
  1755. <relative type="1" draft="contributed">Budúci štvrtok</relative>
  1756. </field>
  1757. <field type="fri">
  1758. <relative type="-1" draft="contributed">Minulý piatok</relative>
  1759. <relative type="0" draft="contributed">Tento piatok</relative>
  1760. <relative type="1" draft="contributed">Budúci piatok</relative>
  1761. </field>
  1762. <field type="sat">
  1763. <relative type="-1" draft="contributed">Minulú sobotu</relative>
  1764. <relative type="0" draft="contributed">Túto sobotu</relative>
  1765. <relative type="1" draft="contributed">Budúcu sobotu</relative>
  1766. </field>
  1767. <field type="dayperiod">
  1768. <displayName>Časť dňa</displayName>
  1769. </field>
  1770. <field type="hour">
  1771. <displayName>Hodina</displayName>
  1772. <relativeTime type="future">
  1773. <relativeTimePattern count="one">O {0} hodinu</relativeTimePattern>
  1774. <relativeTimePattern count="few">O {0} hodiny</relativeTimePattern>
  1775. <relativeTimePattern count="many">O {0} hodiny</relativeTimePattern>
  1776. <relativeTimePattern count="other">O {0} hodín</relativeTimePattern>
  1777. </relativeTime>
  1778. <relativeTime type="past">
  1779. <relativeTimePattern count="one">Pred {0} hodinou</relativeTimePattern>
  1780. <relativeTimePattern count="few">Pred {0} hodinami</relativeTimePattern>
  1781. <relativeTimePattern count="many">Pred {0} hodinami</relativeTimePattern>
  1782. <relativeTimePattern count="other">Pred {0} hodinami</relativeTimePattern>
  1783. </relativeTime>
  1784. </field>
  1785. <field type="minute">
  1786. <displayName>Minúta</displayName>
  1787. <relativeTime type="future">
  1788. <relativeTimePattern count="one">O {0} minútu</relativeTimePattern>
  1789. <relativeTimePattern count="few">O {0} minúty</relativeTimePattern>
  1790. <relativeTimePattern count="many">O {0} minúty</relativeTimePattern>
  1791. <relativeTimePattern count="other">O {0} minút</relativeTimePattern>
  1792. </relativeTime>
  1793. <relativeTime type="past">
  1794. <relativeTimePattern count="one">Pred {0} minútou</relativeTimePattern>
  1795. <relativeTimePattern count="few">Pred {0} minútami</relativeTimePattern>
  1796. <relativeTimePattern count="many">Pred {0} minútami</relativeTimePattern>
  1797. <relativeTimePattern count="other">Pred {0} minútami</relativeTimePattern>
  1798. </relativeTime>
  1799. </field>
  1800. <field type="second">
  1801. <displayName>Sekunda</displayName>
  1802. <relative type="0">teraz</relative>
  1803. <relativeTime type="future">
  1804. <relativeTimePattern count="one">O {0} sekundu</relativeTimePattern>
  1805. <relativeTimePattern count="few">O {0} sekundy</relativeTimePattern>
  1806. <relativeTimePattern count="many">O {0} sekundy</relativeTimePattern>
  1807. <relativeTimePattern count="other">O {0} sekúnd</relativeTimePattern>
  1808. </relativeTime>
  1809. <relativeTime type="past">
  1810. <relativeTimePattern count="one">Pred {0} sekundou</relativeTimePattern>
  1811. <relativeTimePattern count="few">Pred {0} sekundami</relativeTimePattern>
  1812. <relativeTimePattern count="many">Pred {0} sekundami</relativeTimePattern>
  1813. <relativeTimePattern count="other">Pred {0} sekundami</relativeTimePattern>
  1814. </relativeTime>
  1815. </field>
  1816. <field type="zone">
  1817. <displayName>Časové pásmo</displayName>
  1818. </field>
  1819. </fields>
  1820. <timeZoneNames>
  1821. <hourFormat>+HH:mm;-HH:mm</hourFormat>
  1822. <gmtFormat>GMT{0}</gmtFormat>
  1823. <gmtZeroFormat>GMT</gmtZeroFormat>
  1824. <regionFormat>Časové pásmo {0}</regionFormat>
  1825. <regionFormat type="daylight" draft="contributed">{0} (+1)</regionFormat>
  1826. <regionFormat type="standard" draft="contributed">{0} (+0)</regionFormat>
  1827. <fallbackFormat>{1} ({0})</fallbackFormat>
  1828. <zone type="Etc/Unknown">
  1829. <exemplarCity>Neznáme mesto</exemplarCity>
  1830. </zone>
  1831. <zone type="Asia/Dubai">
  1832. <exemplarCity draft="contributed">Dubaj</exemplarCity>
  1833. </zone>
  1834. <zone type="Asia/Kabul">
  1835. <exemplarCity draft="contributed">Kábul</exemplarCity>
  1836. </zone>
  1837. <zone type="Europe/Tirane">
  1838. <exemplarCity draft="contributed">Tirana</exemplarCity>
  1839. </zone>
  1840. <zone type="Asia/Yerevan">
  1841. <exemplarCity draft="contributed">Jerevan</exemplarCity>
  1842. </zone>
  1843. <zone type="Antarctica/DumontDUrville">
  1844. <exemplarCity draft="contributed">Dumont D'Urville</exemplarCity>
  1845. </zone>
  1846. <zone type="Europe/Vienna">
  1847. <exemplarCity draft="contributed">Viedeň</exemplarCity>
  1848. </zone>
  1849. <zone type="Asia/Dhaka">
  1850. <exemplarCity draft="contributed">Dháka</exemplarCity>
  1851. </zone>
  1852. <zone type="Europe/Brussels">
  1853. <exemplarCity draft="contributed">Brusel</exemplarCity>
  1854. </zone>
  1855. <zone type="Asia/Bahrain">
  1856. <exemplarCity draft="contributed">Bahrajn</exemplarCity>
  1857. </zone>
  1858. <zone type="America/St_Barthelemy">
  1859. <exemplarCity draft="contributed">Svätý Bartolomej</exemplarCity>
  1860. </zone>
  1861. <zone type="Atlantic/Bermuda">
  1862. <exemplarCity draft="contributed">Bermudy</exemplarCity>
  1863. </zone>
  1864. <zone type="Asia/Brunei">
  1865. <exemplarCity draft="contributed">Brunej</exemplarCity>
  1866. </zone>
  1867. <zone type="America/Coral_Harbour">
  1868. <exemplarCity draft="contributed">Atikokan</exemplarCity>
  1869. </zone>
  1870. <zone type="America/St_Johns">
  1871. <exemplarCity draft="contributed">Sv. Ján</exemplarCity>
  1872. </zone>
  1873. <zone type="Europe/Zurich">
  1874. <exemplarCity draft="contributed">Zürich</exemplarCity>
  1875. </zone>
  1876. <zone type="Pacific/Easter">
  1877. <exemplarCity draft="contributed">Veľkonočné ostrovy</exemplarCity>
  1878. </zone>
  1879. <zone type="Asia/Shanghai">
  1880. <exemplarCity>Šanghaj</exemplarCity>
  1881. </zone>
  1882. <zone type="America/Costa_Rica">
  1883. <exemplarCity draft="contributed">Kostarika</exemplarCity>
  1884. </zone>
  1885. <zone type="Atlantic/Cape_Verde">
  1886. <exemplarCity draft="contributed">Kapverdy</exemplarCity>
  1887. </zone>
  1888. <zone type="Indian/Christmas">
  1889. <exemplarCity draft="contributed">Vianočný ostrov</exemplarCity>
  1890. </zone>
  1891. <zone type="Asia/Nicosia">
  1892. <exemplarCity draft="contributed">Nikózia</exemplarCity>
  1893. </zone>
  1894. <zone type="Europe/Prague">
  1895. <exemplarCity draft="contributed">Praha</exemplarCity>
  1896. </zone>
  1897. <zone type="Europe/Busingen">
  1898. <exemplarCity draft="contributed">Büsingen</exemplarCity>
  1899. </zone>
  1900. <zone type="Europe/Berlin">
  1901. <exemplarCity draft="contributed">Berlín</exemplarCity>
  1902. </zone>
  1903. <zone type="Africa/Djibouti">
  1904. <exemplarCity draft="contributed">Džibutsko</exemplarCity>
  1905. </zone>
  1906. <zone type="Europe/Copenhagen">
  1907. <exemplarCity draft="contributed">Kodaň</exemplarCity>
  1908. </zone>
  1909. <zone type="America/Dominica">
  1910. <exemplarCity draft="contributed">Dominika</exemplarCity>
  1911. </zone>
  1912. <zone type="Africa/Algiers">
  1913. <exemplarCity draft="contributed">Alžír</exemplarCity>
  1914. </zone>
  1915. <zone type="Pacific/Galapagos">
  1916. <exemplarCity>Galapágy</exemplarCity>
  1917. </zone>
  1918. <zone type="Africa/Cairo">
  1919. <exemplarCity draft="contributed">Káhira</exemplarCity>
  1920. </zone>
  1921. <zone type="Africa/Asmera">
  1922. <exemplarCity draft="contributed">Asmara</exemplarCity>
  1923. </zone>
  1924. <zone type="Atlantic/Canary">
  1925. <exemplarCity>Kanárske ostrovy</exemplarCity>
  1926. </zone>
  1927. <zone type="Pacific/Fiji">
  1928. <exemplarCity draft="contributed">Fidži</exemplarCity>
  1929. </zone>
  1930. <zone type="Pacific/Truk">
  1931. <exemplarCity draft="contributed">Chuuk</exemplarCity>
  1932. </zone>
  1933. <zone type="Pacific/Ponape">
  1934. <exemplarCity draft="contributed">Pohnpei</exemplarCity>
  1935. </zone>
  1936. <zone type="Atlantic/Faeroe">
  1937. <exemplarCity draft="contributed">Faerské ostrovy</exemplarCity>
  1938. </zone>
  1939. <zone type="Europe/Paris">
  1940. <exemplarCity draft="contributed">Paríž</exemplarCity>
  1941. </zone>
  1942. <zone type="Europe/London">
  1943. <long>
  1944. <daylight draft="contributed">Britský letný čas</daylight>
  1945. </long>
  1946. <exemplarCity>Londýn</exemplarCity>
  1947. </zone>
  1948. <zone type="Europe/Gibraltar">
  1949. <exemplarCity draft="contributed">Gibraltár</exemplarCity>
  1950. </zone>
  1951. <zone type="America/Godthab">
  1952. <exemplarCity draft="contributed">Nuuk</exemplarCity>
  1953. </zone>
  1954. <zone type="America/Scoresbysund">
  1955. <exemplarCity draft="contributed">Ittoqqortoormiit</exemplarCity>
  1956. </zone>
  1957. <zone type="Europe/Athens">
  1958. <exemplarCity draft="contributed">Atény</exemplarCity>
  1959. </zone>
  1960. <zone type="Atlantic/South_Georgia">
  1961. <exemplarCity draft="contributed">Južná Georgia</exemplarCity>
  1962. </zone>
  1963. <zone type="Asia/Hong_Kong">
  1964. <exemplarCity draft="contributed">Hongkong</exemplarCity>
  1965. </zone>
  1966. <zone type="Europe/Zagreb">
  1967. <exemplarCity draft="contributed">Záhreb</exemplarCity>
  1968. </zone>
  1969. <zone type="Europe/Budapest">
  1970. <exemplarCity draft="contributed">Budapešť</exemplarCity>
  1971. </zone>
  1972. <zone type="Europe/Dublin">
  1973. <long>
  1974. <daylight draft="contributed">Írsky letný čas</daylight>
  1975. </long>
  1976. </zone>
  1977. <zone type="Asia/Jerusalem">
  1978. <exemplarCity draft="contributed">Jeruzalem</exemplarCity>
  1979. </zone>
  1980. <zone type="Europe/Isle_of_Man">
  1981. <exemplarCity draft="contributed">Ostrov Man</exemplarCity>
  1982. </zone>
  1983. <zone type="Asia/Calcutta">
  1984. <exemplarCity draft="contributed">Kalkata</exemplarCity>
  1985. </zone>
  1986. <zone type="Asia/Baghdad">
  1987. <exemplarCity draft="contributed">Bagdad</exemplarCity>
  1988. </zone>
  1989. <zone type="Asia/Tehran">
  1990. <exemplarCity draft="contributed">Teherán</exemplarCity>
  1991. </zone>
  1992. <zone type="Europe/Rome">
  1993. <exemplarCity draft="contributed">Rím</exemplarCity>
  1994. </zone>
  1995. <zone type="America/Jamaica">
  1996. <exemplarCity draft="contributed">Jamajka</exemplarCity>
  1997. </zone>
  1998. <zone type="Asia/Bishkek">
  1999. <exemplarCity draft="contributed">Biškek</exemplarCity>
  2000. </zone>
  2001. <zone type="Asia/Phnom_Penh">
  2002. <exemplarCity draft="contributed">Phnom Pénh</exemplarCity>
  2003. </zone>
  2004. <zone type="America/St_Kitts">
  2005. <exemplarCity draft="contributed">St. Kitts</exemplarCity>
  2006. </zone>
  2007. <zone type="Asia/Pyongyang">
  2008. <exemplarCity draft="contributed">Pchjongjang</exemplarCity>
  2009. </zone>
  2010. <zone type="Asia/Seoul">
  2011. <exemplarCity draft="contributed">Soul</exemplarCity>
  2012. </zone>
  2013. <zone type="Asia/Kuwait">
  2014. <exemplarCity draft="contributed">Kuvajt</exemplarCity>
  2015. </zone>
  2016. <zone type="Asia/Almaty">
  2017. <exemplarCity draft="contributed">Alma-Ata</exemplarCity>
  2018. </zone>
  2019. <zone type="Asia/Beirut">
  2020. <exemplarCity draft="contributed">Bejrút</exemplarCity>
  2021. </zone>
  2022. <zone type="America/St_Lucia">
  2023. <exemplarCity draft="contributed">Svätá Lucia</exemplarCity>
  2024. </zone>
  2025. <zone type="Asia/Colombo">
  2026. <exemplarCity draft="contributed">Kolombo</exemplarCity>
  2027. </zone>
  2028. <zone type="Europe/Luxembourg">
  2029. <exemplarCity draft="contributed">Luxembursko</exemplarCity>
  2030. </zone>
  2031. <zone type="Africa/Tripoli">
  2032. <exemplarCity draft="contributed">Tripolis</exemplarCity>
  2033. </zone>
  2034. <zone type="Europe/Monaco">
  2035. <exemplarCity draft="contributed">Monako</exemplarCity>
  2036. </zone>
  2037. <zone type="Europe/Chisinau">
  2038. <exemplarCity draft="contributed">Kišiňov</exemplarCity>
  2039. </zone>
  2040. <zone type="Asia/Rangoon">
  2041. <exemplarCity draft="contributed">Rangún</exemplarCity>
  2042. </zone>
  2043. <zone type="Asia/Ulaanbaatar">
  2044. <exemplarCity>Ulanbátar</exemplarCity>
  2045. </zone>
  2046. <zone type="Asia/Macau">
  2047. <exemplarCity draft="contributed">Macao</exemplarCity>
  2048. </zone>
  2049. <zone type="America/Martinique">
  2050. <exemplarCity draft="contributed">Martinik</exemplarCity>
  2051. </zone>
  2052. <zone type="Indian/Mauritius">
  2053. <exemplarCity draft="contributed">Maurícius</exemplarCity>
  2054. </zone>
  2055. <zone type="Indian/Maldives">
  2056. <exemplarCity draft="contributed">Maldivy</exemplarCity>
  2057. </zone>
  2058. <zone type="Asia/Katmandu">
  2059. <exemplarCity draft="contributed">Káthmandu</exemplarCity>
  2060. </zone>
  2061. <zone type="Asia/Muscat">
  2062. <exemplarCity draft="contributed">Maskat</exemplarCity>
  2063. </zone>
  2064. <zone type="Asia/Karachi">
  2065. <exemplarCity draft="contributed">Karáči</exemplarCity>
  2066. </zone>
  2067. <zone type="Europe/Warsaw">
  2068. <exemplarCity draft="contributed">Varšava</exemplarCity>
  2069. </zone>
  2070. <zone type="America/Puerto_Rico">
  2071. <exemplarCity draft="contributed">Portoriko</exemplarCity>
  2072. </zone>
  2073. <zone type="Atlantic/Azores">
  2074. <exemplarCity>Azorské ostrovy</exemplarCity>
  2075. </zone>
  2076. <zone type="Europe/Lisbon">
  2077. <exemplarCity>Lisabon</exemplarCity>
  2078. </zone>
  2079. <zone type="America/Asuncion">
  2080. <exemplarCity draft="contributed">Asunción</exemplarCity>
  2081. </zone>
  2082. <zone type="Asia/Qatar">
  2083. <exemplarCity draft="contributed">Katar</exemplarCity>
  2084. </zone>
  2085. <zone type="Indian/Reunion">
  2086. <exemplarCity draft="contributed">Réunion</exemplarCity>
  2087. </zone>
  2088. <zone type="Europe/Bucharest">
  2089. <exemplarCity draft="contributed">Bukurešť</exemplarCity>
  2090. </zone>
  2091. <zone type="Europe/Belgrade">
  2092. <exemplarCity draft="contributed">Belehrad</exemplarCity>
  2093. </zone>
  2094. <zone type="Europe/Moscow">
  2095. <exemplarCity>Moskva</exemplarCity>
  2096. </zone>
  2097. <zone type="Asia/Yekaterinburg">
  2098. <exemplarCity>Jekaterinburg</exemplarCity>
  2099. </zone>
  2100. <zone type="Asia/Novokuznetsk">
  2101. <exemplarCity draft="contributed">Novokuzneck</exemplarCity>
  2102. </zone>
  2103. <zone type="Asia/Krasnoyarsk">
  2104. <exemplarCity>Krasnojarsko</exemplarCity>
  2105. </zone>
  2106. <zone type="Asia/Irkutsk">
  2107. <exemplarCity>Irkutsko</exemplarCity>
  2108. </zone>
  2109. <zone type="Asia/Yakutsk">
  2110. <exemplarCity>Jakutsko</exemplarCity>
  2111. </zone>
  2112. <zone type="Asia/Sakhalin">
  2113. <exemplarCity>Sachalin</exemplarCity>
  2114. </zone>
  2115. <zone type="Asia/Ust-Nera">
  2116. <exemplarCity draft="contributed">Usť-Nera</exemplarCity>
  2117. </zone>
  2118. <zone type="Asia/Kamchatka">
  2119. <exemplarCity>Kamčatka</exemplarCity>
  2120. </zone>
  2121. <zone type="Africa/Khartoum">
  2122. <exemplarCity draft="contributed">Chartúm</exemplarCity>
  2123. </zone>
  2124. <zone type="Europe/Stockholm">
  2125. <exemplarCity draft="contributed">Štokholm</exemplarCity>
  2126. </zone>
  2127. <zone type="Asia/Singapore">
  2128. <exemplarCity draft="contributed">Singapur</exemplarCity>
  2129. </zone>
  2130. <zone type="Atlantic/St_Helena">
  2131. <exemplarCity draft="contributed">Sv. Helena</exemplarCity>
  2132. </zone>
  2133. <zone type="Europe/Ljubljana">
  2134. <exemplarCity draft="contributed">Ľubľana</exemplarCity>
  2135. </zone>
  2136. <zone type="Europe/San_Marino">
  2137. <exemplarCity draft="contributed">San Maríno</exemplarCity>
  2138. </zone>
  2139. <zone type="Africa/Mogadishu">
  2140. <exemplarCity draft="contributed">Mogadišo</exemplarCity>
  2141. </zone>
  2142. <zone type="Africa/Sao_Tome">
  2143. <exemplarCity draft="contributed">Svätý Tomáš</exemplarCity>
  2144. </zone>
  2145. <zone type="America/El_Salvador">
  2146. <exemplarCity draft="contributed">Salvádor</exemplarCity>
  2147. </zone>
  2148. <zone type="America/Lower_Princes">
  2149. <exemplarCity draft="contributed">Lower Prince's Quarter</exemplarCity>
  2150. </zone>
  2151. <zone type="Asia/Damascus">
  2152. <exemplarCity draft="contributed">Damask</exemplarCity>
  2153. </zone>
  2154. <zone type="Asia/Dushanbe">
  2155. <exemplarCity draft="contributed">Dušanbe</exemplarCity>
  2156. </zone>
  2157. <zone type="Asia/Ashgabat">
  2158. <exemplarCity draft="contributed">Ašchabad</exemplarCity>
  2159. </zone>
  2160. <zone type="Asia/Taipei">
  2161. <exemplarCity draft="contributed">Tchaj-pej</exemplarCity>
  2162. </zone>
  2163. <zone type="Europe/Uzhgorod">
  2164. <exemplarCity>Užhorod</exemplarCity>
  2165. </zone>
  2166. <zone type="Europe/Kiev">
  2167. <exemplarCity>Kyjev</exemplarCity>
  2168. </zone>
  2169. <zone type="Europe/Zaporozhye">
  2170. <exemplarCity>Záporožie</exemplarCity>
  2171. </zone>
  2172. <zone type="America/Anchorage">
  2173. <exemplarCity draft="contributed">Aljaška</exemplarCity>
  2174. </zone>
  2175. <zone type="America/North_Dakota/Beulah">
  2176. <exemplarCity draft="contributed">Beulah, Severná Dakota</exemplarCity>
  2177. </zone>
  2178. <zone type="America/North_Dakota/New_Salem">
  2179. <exemplarCity draft="contributed">New Salem, Severná Dakota</exemplarCity>
  2180. </zone>
  2181. <zone type="America/North_Dakota/Center">
  2182. <exemplarCity draft="contributed">Center, Severná Dakota</exemplarCity>
  2183. </zone>
  2184. <zone type="America/Indiana/Vincennes">
  2185. <exemplarCity draft="contributed">Vincennes, Indiana</exemplarCity>
  2186. </zone>
  2187. <zone type="America/Indiana/Petersburg">
  2188. <exemplarCity draft="contributed">Petersburg, Indiana</exemplarCity>
  2189. </zone>
  2190. <zone type="America/Indiana/Tell_City">
  2191. <exemplarCity draft="contributed">Tell City, Indiana</exemplarCity>
  2192. </zone>
  2193. <zone type="America/Indiana/Knox">
  2194. <exemplarCity draft="contributed">Knox, Indiana</exemplarCity>
  2195. </zone>
  2196. <zone type="America/Indiana/Winamac">
  2197. <exemplarCity draft="contributed">Winamac, Indiana</exemplarCity>
  2198. </zone>
  2199. <zone type="America/Indiana/Marengo">
  2200. <exemplarCity draft="contributed">Marengo, Indiana</exemplarCity>
  2201. </zone>
  2202. <zone type="America/Indiana/Vevay">
  2203. <exemplarCity draft="contributed">Vevay, Indiana</exemplarCity>
  2204. </zone>
  2205. <zone type="America/Kentucky/Monticello">
  2206. <exemplarCity draft="contributed">Monticello, Kentucky</exemplarCity>
  2207. </zone>
  2208. <zone type="Asia/Tashkent">
  2209. <exemplarCity>Taškent</exemplarCity>
  2210. </zone>
  2211. <zone type="Europe/Vatican">
  2212. <exemplarCity draft="contributed">Vatikán</exemplarCity>
  2213. </zone>
  2214. <zone type="America/St_Vincent">
  2215. <exemplarCity draft="contributed">Sv. Vincent</exemplarCity>
  2216. </zone>
  2217. <zone type="America/St_Thomas">
  2218. <exemplarCity draft="contributed">Sv. Tomáš</exemplarCity>
  2219. </zone>
  2220. <zone type="Asia/Saigon">
  2221. <exemplarCity draft="contributed">Hočiminovo Mesto</exemplarCity>
  2222. </zone>
  2223. <metazone type="Afghanistan">
  2224. <long>
  2225. <standard draft="contributed">Afganský čas</standard>
  2226. </long>
  2227. </metazone>
  2228. <metazone type="Africa_Central">
  2229. <long>
  2230. <standard>Stredoafrický čas</standard>
  2231. </long>
  2232. </metazone>
  2233. <metazone type="Africa_Eastern">
  2234. <long>
  2235. <standard>Východoafrický čas</standard>
  2236. </long>
  2237. </metazone>
  2238. <metazone type="Africa_Southern">
  2239. <long>
  2240. <standard>Juhoafrický čas</standard>
  2241. </long>
  2242. </metazone>
  2243. <metazone type="Africa_Western">
  2244. <long>
  2245. <generic>Západoafrický čas</generic>
  2246. <standard>Západoafrický štandardný čas</standard>
  2247. <daylight>Západoafrický letný čas</daylight>
  2248. </long>
  2249. </metazone>
  2250. <metazone type="Alaska">
  2251. <long>
  2252. <generic draft="contributed">Aljašský čas</generic>
  2253. <standard draft="contributed">Aljašský štandardný čas</standard>
  2254. <daylight draft="contributed">Aljašský letný čas</daylight>
  2255. </long>
  2256. </metazone>
  2257. <metazone type="Amazon">
  2258. <long>
  2259. <generic draft="contributed">Amazonský čas</generic>
  2260. <standard draft="contributed">Amazonský štandardný čas</standard>
  2261. <daylight draft="contributed">Amazonský letný čas</daylight>
  2262. </long>
  2263. </metazone>
  2264. <metazone type="America_Central">
  2265. <long>
  2266. <generic draft="contributed">Centrálny čas</generic>
  2267. <standard draft="contributed">Centrálny štandardný čas</standard>
  2268. <daylight draft="contributed">Centrálny letný čas</daylight>
  2269. </long>
  2270. </metazone>
  2271. <metazone type="America_Eastern">
  2272. <long>
  2273. <generic draft="contributed">Východný čas</generic>
  2274. <standard draft="contributed">Východný štandardný čas</standard>
  2275. <daylight draft="contributed">Východný letný čas</daylight>
  2276. </long>
  2277. </metazone>
  2278. <metazone type="America_Mountain">
  2279. <long>
  2280. <generic draft="contributed">Horský čas</generic>
  2281. <standard draft="contributed">Horský štandardný čas</standard>
  2282. <daylight draft="contributed">Horský letný čas</daylight>
  2283. </long>
  2284. </metazone>
  2285. <metazone type="America_Pacific">
  2286. <long>
  2287. <generic draft="contributed">Tichomorský čas</generic>
  2288. <standard draft="contributed">Tichomorský štandardný čas</standard>
  2289. <daylight draft="contributed">Tichomorský letný čas</daylight>
  2290. </long>
  2291. </metazone>
  2292. <metazone type="Anadyr">
  2293. <long>
  2294. <generic draft="contributed">Anadyrský čas</generic>
  2295. <standard draft="contributed">Anadyrský štandardný čas</standard>
  2296. <daylight draft="contributed">Anadyrský letný čas</daylight>
  2297. </long>
  2298. </metazone>
  2299. <metazone type="Arabian">
  2300. <long>
  2301. <generic>Arabský čas</generic>
  2302. <standard>Arabský štandardný čas</standard>
  2303. <daylight>Arabský letný čas</daylight>
  2304. </long>
  2305. </metazone>
  2306. <metazone type="Argentina">
  2307. <long>
  2308. <generic draft="contributed">Argentínsky čas</generic>
  2309. <standard draft="contributed">Argentínsky štandardný čas</standard>
  2310. <daylight draft="contributed">Argentínsky letný čas</daylight>
  2311. </long>
  2312. </metazone>
  2313. <metazone type="Argentina_Western">
  2314. <long>
  2315. <generic>Západoargentínsky čas</generic>
  2316. <standard>Západoargentínsky štandardný čas</standard>
  2317. <daylight>Západoargentínsky letný čas</daylight>
  2318. </long>
  2319. </metazone>
  2320. <metazone type="Armenia">
  2321. <long>
  2322. <generic draft="contributed">Arménsky čas</generic>
  2323. <standard draft="contributed">Arménsky štandardný čas</standard>
  2324. <daylight draft="contributed">Arménsky letný čas</daylight>
  2325. </long>
  2326. </metazone>
  2327. <metazone type="Atlantic">
  2328. <long>
  2329. <generic>Atlantický čas</generic>
  2330. <standard>Atlantický štandardný čas</standard>
  2331. <daylight>Atlantický letný čas</daylight>
  2332. </long>
  2333. </metazone>
  2334. <metazone type="Australia_Central">
  2335. <long>
  2336. <generic>Stredoaustrálsky čas</generic>
  2337. <standard>Stredoaustrálsky štandardný čas</standard>
  2338. <daylight>Stredoaustrálsky letný čas</daylight>
  2339. </long>
  2340. </metazone>
  2341. <metazone type="Australia_CentralWestern">
  2342. <long>
  2343. <generic>Stredozápadný austrálsky čas</generic>
  2344. <standard>Stredozápadný austrálsky štandardný čas</standard>
  2345. <daylight>Stredozápadný austrálsky letný čas</daylight>
  2346. </long>
  2347. </metazone>
  2348. <metazone type="Australia_Eastern">
  2349. <long>
  2350. <generic>Východoaustrálsky čas</generic>
  2351. <standard>Východoaustrálsky štandardný čas</standard>
  2352. <daylight>Východoaustrálsky letný čas</daylight>
  2353. </long>
  2354. </metazone>
  2355. <metazone type="Australia_Western">
  2356. <long>
  2357. <generic>Západoaustrálsky čas</generic>
  2358. <standard>Západoaustrálsky štandardný čas</standard>
  2359. <daylight>Západoaustrálsky letný čas</daylight>
  2360. </long>
  2361. </metazone>
  2362. <metazone type="Azerbaijan">
  2363. <long>
  2364. <generic draft="contributed">Azerbajdžanský čas</generic>
  2365. <standard draft="contributed">Azerbajdžanský štandardný čas</standard>
  2366. <daylight draft="contributed">Azerbajdžanský letný čas</daylight>
  2367. </long>
  2368. </metazone>
  2369. <metazone type="Azores">
  2370. <long>
  2371. <generic draft="contributed">Azorský čas</generic>
  2372. <standard draft="contributed">Azorský štandardný čas</standard>
  2373. <daylight draft="contributed">Azorský letný čas</daylight>
  2374. </long>
  2375. </metazone>
  2376. <metazone type="Bangladesh">
  2377. <long>
  2378. <generic draft="contributed">Bangladéšsky čas</generic>
  2379. <standard draft="contributed">Bangladéšsky štandardný čas</standard>
  2380. <daylight draft="contributed">Bangladéšsky letný čas</daylight>
  2381. </long>
  2382. </metazone>
  2383. <metazone type="Bhutan">
  2384. <long>
  2385. <standard draft="contributed">Bhutánsky čas</standard>
  2386. </long>
  2387. </metazone>
  2388. <metazone type="Bolivia">
  2389. <long>
  2390. <standard draft="contributed">Bolívijský čas</standard>
  2391. </long>
  2392. </metazone>
  2393. <metazone type="Brasilia">
  2394. <long>
  2395. <generic draft="contributed">Brazílsky čas</generic>
  2396. <standard draft="contributed">Brazílsky štandardný čas</standard>
  2397. <daylight draft="contributed">Brazílsky letný čas</daylight>
  2398. </long>
  2399. </metazone>
  2400. <metazone type="Brunei">
  2401. <long>
  2402. <standard draft="contributed">Brunejský čas</standard>
  2403. </long>
  2404. </metazone>
  2405. <metazone type="Cape_Verde">
  2406. <long>
  2407. <generic draft="contributed">Kapverdský čas</generic>
  2408. <standard draft="contributed">Kapverdský štandardný čas</standard>
  2409. <daylight draft="contributed">Kapverdský letný čas</daylight>
  2410. </long>
  2411. </metazone>
  2412. <metazone type="Chamorro">
  2413. <long>
  2414. <standard draft="contributed">Chamorrský štandardný čas</standard>
  2415. </long>
  2416. </metazone>
  2417. <metazone type="Chatham">
  2418. <long>
  2419. <generic draft="contributed">Chathamský čas</generic>
  2420. <standard draft="contributed">Chathamský štandardný čas</standard>
  2421. <daylight draft="contributed">Chathamský letný čas</daylight>
  2422. </long>
  2423. </metazone>
  2424. <metazone type="Chile">
  2425. <long>
  2426. <generic draft="contributed">Čilský čas</generic>
  2427. <standard draft="contributed">Čilský štandardný čas</standard>
  2428. <daylight draft="contributed">Čilský letný čas</daylight>
  2429. </long>
  2430. </metazone>
  2431. <metazone type="China">
  2432. <long>
  2433. <generic>Čínsky čas</generic>
  2434. <standard>Čínsky štandardný čas</standard>
  2435. <daylight>Čínsky letný čas</daylight>
  2436. </long>
  2437. </metazone>
  2438. <metazone type="Choibalsan">
  2439. <long>
  2440. <generic>Choibalsanský čas</generic>
  2441. <standard>Čojbalsanský štandardný čas</standard>
  2442. <daylight>Choibalsanský letný čas</daylight>
  2443. </long>
  2444. </metazone>
  2445. <metazone type="Christmas">
  2446. <long>
  2447. <standard draft="contributed">Čas Vianočného ostrova</standard>
  2448. </long>
  2449. </metazone>
  2450. <metazone type="Cocos">
  2451. <long>
  2452. <standard draft="contributed">Čas Kokosových ostrovov</standard>
  2453. </long>
  2454. </metazone>
  2455. <metazone type="Colombia">
  2456. <long>
  2457. <generic draft="contributed">Kolumbijský čas</generic>
  2458. <standard draft="contributed">Kolumbijský štandardný čas</standard>
  2459. <daylight draft="contributed">Kolumbijský letný čas</daylight>
  2460. </long>
  2461. </metazone>
  2462. <metazone type="Cook">
  2463. <long>
  2464. <generic draft="contributed">Čas Cookových ostrovov</generic>
  2465. <standard draft="contributed">Štandardný čas Cookových ostrovov</standard>
  2466. <daylight draft="contributed">Letný čas Cookových ostrovov</daylight>
  2467. </long>
  2468. </metazone>
  2469. <metazone type="Cuba">
  2470. <long>
  2471. <generic>Kubánsky čas</generic>
  2472. <standard>Kubánsky štandardný čas</standard>
  2473. <daylight>Kubánsky letný čas</daylight>
  2474. </long>
  2475. </metazone>
  2476. <metazone type="Davis">
  2477. <long>
  2478. <standard draft="contributed">Čas Davisovej stanice</standard>
  2479. </long>
  2480. </metazone>
  2481. <metazone type="DumontDUrville">
  2482. <long>
  2483. <standard draft="contributed">Čas stanice Dumonta d'Urvillea</standard>
  2484. </long>
  2485. </metazone>
  2486. <metazone type="East_Timor">
  2487. <long>
  2488. <standard draft="contributed">Východotimorský čas</standard>
  2489. </long>
  2490. </metazone>
  2491. <metazone type="Easter">
  2492. <long>
  2493. <generic draft="contributed">Čas Veľkonočného ostrova</generic>
  2494. <standard draft="contributed">Štandardný čas Veľkonočného ostrova</standard>
  2495. <daylight draft="contributed">Letný čas Veľkonočného ostrova</daylight>
  2496. </long>
  2497. </metazone>
  2498. <metazone type="Ecuador">
  2499. <long>
  2500. <standard draft="contributed">Ekvádorský čas</standard>
  2501. </long>
  2502. </metazone>
  2503. <metazone type="Europe_Central">
  2504. <long>
  2505. <generic>Stredoeurópsky čas</generic>
  2506. <standard>Stredoeurópsky štandardný čas</standard>
  2507. <daylight>Stredoeurópsky letný čas</daylight>
  2508. </long>
  2509. <short>
  2510. <generic>SEČ</generic>
  2511. <standard>SEČ</standard>
  2512. <daylight>SELČ</daylight>
  2513. </short>
  2514. </metazone>
  2515. <metazone type="Europe_Eastern">
  2516. <long>
  2517. <generic>Východoeurópsky čas</generic>
  2518. <standard>Východoeurópsky štandardný čas</standard>
  2519. <daylight>Východoeurópsky letný čas</daylight>
  2520. </long>
  2521. </metazone>
  2522. <metazone type="Europe_Western">
  2523. <long>
  2524. <generic>Západoeurópsky čas</generic>
  2525. <standard>Západoeurópsky štandardný čas</standard>
  2526. <daylight>Západoeurópsky letný čas</daylight>
  2527. </long>
  2528. </metazone>
  2529. <metazone type="Falkland">
  2530. <long>
  2531. <generic draft="contributed">Čas Falklandských ostrovov</generic>
  2532. <standard draft="contributed">Štandardný čas Falklandských ostrovov</standard>
  2533. <daylight draft="contributed">Letný čas Falklandských ostrovov</daylight>
  2534. </long>
  2535. </metazone>
  2536. <metazone type="Fiji">
  2537. <long>
  2538. <generic draft="contributed">Fidžijský čas</generic>
  2539. <standard draft="contributed">Fidžijský štandardný čas</standard>
  2540. <daylight draft="contributed">Fidžijský letný čas</daylight>
  2541. </long>
  2542. </metazone>
  2543. <metazone type="French_Guiana">
  2544. <long>
  2545. <standard draft="contributed">Čas Francúzskej Guyany</standard>
  2546. </long>
  2547. </metazone>
  2548. <metazone type="French_Southern">
  2549. <long>
  2550. <standard draft="contributed">Francúzsky južný a antarktický čas</standard>
  2551. </long>
  2552. </metazone>
  2553. <metazone type="Galapagos">
  2554. <long>
  2555. <standard draft="contributed">Galapágsky čas</standard>
  2556. </long>
  2557. </metazone>
  2558. <metazone type="Gambier">
  2559. <long>
  2560. <standard draft="contributed">Gambierský čas</standard>
  2561. </long>
  2562. </metazone>
  2563. <metazone type="Georgia">
  2564. <long>
  2565. <generic draft="contributed">Gruzínsky čas</generic>
  2566. <standard draft="contributed">Gruzínsky štandardný čas</standard>
  2567. <daylight draft="contributed">Gruzínsky letný čas</daylight>
  2568. </long>
  2569. </metazone>
  2570. <metazone type="Gilbert_Islands">
  2571. <long>
  2572. <standard draft="contributed">Čas Gilbertových ostrovov</standard>
  2573. </long>
  2574. </metazone>
  2575. <metazone type="GMT">
  2576. <long>
  2577. <standard>Greenwichský čas</standard>
  2578. </long>
  2579. </metazone>
  2580. <metazone type="Greenland_Eastern">
  2581. <long>
  2582. <generic>Východogrónsky čas</generic>
  2583. <standard>Východogrónsky štandardný čas</standard>
  2584. <daylight>Východogrónsky letný čas</daylight>
  2585. </long>
  2586. </metazone>
  2587. <metazone type="Greenland_Western">
  2588. <long>
  2589. <generic>Západogrónsky čas</generic>
  2590. <standard>Západogrónsky štandardný čas</standard>
  2591. <daylight>Západogrónsky letný čas</daylight>
  2592. </long>
  2593. </metazone>
  2594. <metazone type="Gulf">
  2595. <long>
  2596. <standard draft="contributed">Štandardný čas Perzského zálivu</standard>
  2597. </long>
  2598. </metazone>
  2599. <metazone type="Guyana">
  2600. <long>
  2601. <standard draft="contributed">Guyanský čas</standard>
  2602. </long>
  2603. </metazone>
  2604. <metazone type="Hawaii_Aleutian">
  2605. <long>
  2606. <generic>Havajsko-aleutský čas</generic>
  2607. <standard>Havajsko-aleutský štandardný čas</standard>
  2608. <daylight>Havajsko-aleutský letný čas</daylight>
  2609. </long>
  2610. </metazone>
  2611. <metazone type="Hong_Kong">
  2612. <long>
  2613. <generic draft="contributed">Hongkongský čas</generic>
  2614. <standard draft="contributed">Hongkongský štandardný čas</standard>
  2615. <daylight draft="contributed">Hongkongský letný čas</daylight>
  2616. </long>
  2617. </metazone>
  2618. <metazone type="Hovd">
  2619. <long>
  2620. <generic>Chovdský čas</generic>
  2621. <standard>Chovdský štandardný čas</standard>
  2622. <daylight>Chovdský letný čas</daylight>
  2623. </long>
  2624. </metazone>
  2625. <metazone type="India">
  2626. <long>
  2627. <standard>Indický čas</standard>
  2628. </long>
  2629. </metazone>
  2630. <metazone type="Indian_Ocean">
  2631. <long>
  2632. <standard draft="contributed">Čas Indického oceánu</standard>
  2633. </long>
  2634. </metazone>
  2635. <metazone type="Indochina">
  2636. <long>
  2637. <standard>Indočínsky čas</standard>
  2638. </long>
  2639. </metazone>
  2640. <metazone type="Indonesia_Central">
  2641. <long>
  2642. <standard>Stredoindonézsky čas</standard>
  2643. </long>
  2644. </metazone>
  2645. <metazone type="Indonesia_Eastern">
  2646. <long>
  2647. <standard>Východoindonézsky čas</standard>
  2648. </long>
  2649. </metazone>
  2650. <metazone type="Indonesia_Western">
  2651. <long>
  2652. <standard>Západoindonézsky čas</standard>
  2653. </long>
  2654. </metazone>
  2655. <metazone type="Iran">
  2656. <long>
  2657. <generic draft="contributed">Iránsky čas</generic>
  2658. <standard draft="contributed">Iránsky štandardný čas</standard>
  2659. <daylight draft="contributed">Iránsky letný čas</daylight>
  2660. </long>
  2661. </metazone>
  2662. <metazone type="Irkutsk">
  2663. <long>
  2664. <generic draft="contributed">Irkutský čas</generic>
  2665. <standard draft="contributed">Irkutský štandardný čas</standard>
  2666. <daylight draft="contributed">Irkutský letný čas</daylight>
  2667. </long>
  2668. </metazone>
  2669. <metazone type="Israel">
  2670. <long>
  2671. <generic>Izraelský čas</generic>
  2672. <standard>Izraelský štandardný čas</standard>
  2673. <daylight>Izraelský letný čas</daylight>
  2674. </long>
  2675. </metazone>
  2676. <metazone type="Japan">
  2677. <long>
  2678. <generic>Japonský čas</generic>
  2679. <standard>Japonský štandardný čas</standard>
  2680. <daylight>Japonský letný čas</daylight>
  2681. </long>
  2682. </metazone>
  2683. <metazone type="Kamchatka">
  2684. <long>
  2685. <generic draft="contributed">Petropavlovsk-Kamčatský čas</generic>
  2686. <standard draft="contributed">Petropavlovsk-Kamčatský štandardný čas</standard>
  2687. <daylight draft="contributed">Petropavlovsk-Kamčatskijský letný čas</daylight>
  2688. </long>
  2689. </metazone>
  2690. <metazone type="Kazakhstan_Eastern">
  2691. <long>
  2692. <standard draft="contributed">Východokazašský čas</standard>
  2693. </long>
  2694. </metazone>
  2695. <metazone type="Kazakhstan_Western">
  2696. <long>
  2697. <standard draft="contributed">Západokazašský čas</standard>
  2698. </long>
  2699. </metazone>
  2700. <metazone type="Korea">
  2701. <long>
  2702. <generic>Kórejský čas</generic>
  2703. <standard>Kórejský štandardný čas</standard>
  2704. <daylight>Kórejský letný čas</daylight>
  2705. </long>
  2706. </metazone>
  2707. <metazone type="Kosrae">
  2708. <long>
  2709. <standard draft="contributed">Kosraeský čas</standard>
  2710. </long>
  2711. </metazone>
  2712. <metazone type="Krasnoyarsk">
  2713. <long>
  2714. <generic draft="contributed">Krasnojarský čas</generic>
  2715. <standard draft="contributed">Krasnojarský štandardný čas</standard>
  2716. <daylight draft="contributed">Krasnojarský letný čas</daylight>
  2717. </long>
  2718. </metazone>
  2719. <metazone type="Kyrgystan">
  2720. <long>
  2721. <standard draft="contributed">Kirgizský čas</standard>
  2722. </long>
  2723. </metazone>
  2724. <metazone type="Line_Islands">
  2725. <long>
  2726. <standard draft="contributed">Čas Rovníkových ostrovov</standard>
  2727. </long>
  2728. </metazone>
  2729. <metazone type="Lord_Howe">
  2730. <long>
  2731. <generic draft="contributed">Čas ostrova lorda Howa</generic>
  2732. <standard draft="contributed">Štandardný čas ostrova lorda Howa</standard>
  2733. <daylight draft="contributed">Letný čas ostrova lorda Howa</daylight>
  2734. </long>
  2735. </metazone>
  2736. <metazone type="Macquarie">
  2737. <long>
  2738. <standard draft="contributed">Čas ostrova Macquarie</standard>
  2739. </long>
  2740. </metazone>
  2741. <metazone type="Magadan">
  2742. <long>
  2743. <generic draft="contributed">Magadanský čas</generic>
  2744. <standard draft="contributed">Magadanský štandardný čas</standard>
  2745. <daylight draft="contributed">Magadanský letný čas</daylight>
  2746. </long>
  2747. </metazone>
  2748. <metazone type="Malaysia">
  2749. <long>
  2750. <standard draft="contributed">Malajský čas</standard>
  2751. </long>
  2752. </metazone>
  2753. <metazone type="Maldives">
  2754. <long>
  2755. <standard draft="contributed">Maledivský čas</standard>
  2756. </long>
  2757. </metazone>
  2758. <metazone type="Marquesas">
  2759. <long>
  2760. <standard draft="contributed">Markézsky čas</standard>
  2761. </long>
  2762. </metazone>
  2763. <metazone type="Marshall_Islands">
  2764. <long>
  2765. <standard draft="contributed">Čas Marshallových ostrovov</standard>
  2766. </long>
  2767. </metazone>
  2768. <metazone type="Mauritius">
  2769. <long>
  2770. <generic draft="contributed">Maurícijský čas</generic>
  2771. <standard draft="contributed">Maurícijský štandardný čas</standard>
  2772. <daylight draft="contributed">Maurícijský letný čas</daylight>
  2773. </long>
  2774. </metazone>
  2775. <metazone type="Mawson">
  2776. <long>
  2777. <standard draft="contributed">Čas Mawsonovej stanice</standard>
  2778. </long>
  2779. </metazone>
  2780. <metazone type="Mongolia">
  2781. <long>
  2782. <generic draft="contributed">Ulanbátarský čas</generic>
  2783. <standard draft="contributed">Ulanbátarský štandardný čas</standard>
  2784. <daylight draft="contributed">Ulanbátarský letný čas</daylight>
  2785. </long>
  2786. </metazone>
  2787. <metazone type="Moscow">
  2788. <long>
  2789. <generic>Moskovský čas</generic>
  2790. <standard>Moskovský štandardný čas</standard>
  2791. <daylight>Moskovský letný čas</daylight>
  2792. </long>
  2793. </metazone>
  2794. <metazone type="Myanmar">
  2795. <long>
  2796. <standard draft="contributed">Mjanmarský čas</standard>
  2797. </long>
  2798. </metazone>
  2799. <metazone type="Nauru">
  2800. <long>
  2801. <standard draft="contributed">Čas ostrova Nauru</standard>
  2802. </long>
  2803. </metazone>
  2804. <metazone type="Nepal">
  2805. <long>
  2806. <standard draft="contributed">Nepálsky čas</standard>
  2807. </long>
  2808. </metazone>
  2809. <metazone type="New_Caledonia">
  2810. <long>
  2811. <generic draft="contributed">Novokaledónsky čas</generic>
  2812. <standard draft="contributed">Novokaledónsky štandardný čas</standard>
  2813. <daylight draft="contributed">Novokaledónsky letný čas</daylight>
  2814. </long>
  2815. </metazone>
  2816. <metazone type="New_Zealand">
  2817. <long>
  2818. <generic draft="contributed">Novozélandský čas</generic>
  2819. <standard draft="contributed">Novozélandský štandardný čas</standard>
  2820. <daylight draft="contributed">Novozélandský letný čas</daylight>
  2821. </long>
  2822. </metazone>
  2823. <metazone type="Newfoundland">
  2824. <long>
  2825. <generic draft="contributed">Newfoundlandský čas</generic>
  2826. <standard draft="contributed">Newfoundlandský štandardný čas</standard>
  2827. <daylight draft="contributed">Newfoundlandský letný čas</daylight>
  2828. </long>
  2829. </metazone>
  2830. <metazone type="Niue">
  2831. <long>
  2832. <standard draft="contributed">Čas ostrova Niue</standard>
  2833. </long>
  2834. </metazone>
  2835. <metazone type="Norfolk">
  2836. <long>
  2837. <standard draft="contributed">Čas Norfolkských ostrovov</standard>
  2838. </long>
  2839. </metazone>
  2840. <metazone type="Noronha">
  2841. <long>
  2842. <generic>Čas ostrova Fernando de Noronha</generic>
  2843. <standard>Štandardný čas ostrova Fernando de Noronha</standard>
  2844. <daylight>Letný čas ostrovov Fernanda de Noronha</daylight>
  2845. </long>
  2846. </metazone>
  2847. <metazone type="Novosibirsk">
  2848. <long>
  2849. <generic>Novosibírsky čas</generic>
  2850. <standard>Novosibirský štandardný čas</standard>
  2851. <daylight>Novosibírsky letný čas</daylight>
  2852. </long>
  2853. </metazone>
  2854. <metazone type="Omsk">
  2855. <long>
  2856. <generic draft="contributed">Omský čas</generic>
  2857. <standard draft="contributed">Omský štandardný čas</standard>
  2858. <daylight draft="contributed">Omský letný čas</daylight>
  2859. </long>
  2860. </metazone>
  2861. <metazone type="Pakistan">
  2862. <long>
  2863. <generic draft="contributed">Pakistanský čas</generic>
  2864. <standard draft="contributed">Pakistanský štandardný čas</standard>
  2865. <daylight draft="contributed">Pakistanský letný čas</daylight>
  2866. </long>
  2867. </metazone>
  2868. <metazone type="Palau">
  2869. <long>
  2870. <standard draft="contributed">Palauský čas</standard>
  2871. </long>
  2872. </metazone>
  2873. <metazone type="Papua_New_Guinea">
  2874. <long>
  2875. <standard draft="contributed">Čas Papuy-Novej Guiney</standard>
  2876. </long>
  2877. </metazone>
  2878. <metazone type="Paraguay">
  2879. <long>
  2880. <generic draft="contributed">Paraguajský čas</generic>
  2881. <standard draft="contributed">Paraguajský štandardný čas</standard>
  2882. <daylight draft="contributed">Paraguajský letný čas</daylight>
  2883. </long>
  2884. </metazone>
  2885. <metazone type="Peru">
  2886. <long>
  2887. <generic draft="contributed">Peruánsky čas</generic>
  2888. <standard draft="contributed">Peruánsky štandardný čas</standard>
  2889. <daylight draft="contributed">Peruánsky letný čas</daylight>
  2890. </long>
  2891. </metazone>
  2892. <metazone type="Philippines">
  2893. <long>
  2894. <generic draft="contributed">Filipínsky čas</generic>
  2895. <standard draft="contributed">Filipínsky štandardný čas</standard>
  2896. <daylight draft="contributed">Filipínsky letný čas</daylight>
  2897. </long>
  2898. </metazone>
  2899. <metazone type="Phoenix_Islands">
  2900. <long>
  2901. <standard draft="contributed">Čas Fénixových ostrovov</standard>
  2902. </long>
  2903. </metazone>
  2904. <metazone type="Pierre_Miquelon">
  2905. <long>
  2906. <generic>Čas ostrovov Saint-Pierre a Miquelon</generic>
  2907. <standard>Štandardný čas ostrovov Saint-Pierre a Miquelon</standard>
  2908. <daylight>Letný čas ostrovov Saint-Pierre a Miquelon</daylight>
  2909. </long>
  2910. </metazone>
  2911. <metazone type="Pitcairn">
  2912. <long>
  2913. <standard draft="contributed">Čas Pitcairnovho ostrova</standard>
  2914. </long>
  2915. </metazone>
  2916. <metazone type="Ponape">
  2917. <long>
  2918. <standard draft="contributed">Ponapský čas</standard>
  2919. </long>
  2920. </metazone>
  2921. <metazone type="Reunion">
  2922. <long>
  2923. <standard draft="contributed">Réunionský čas</standard>
  2924. </long>
  2925. </metazone>
  2926. <metazone type="Rothera">
  2927. <long>
  2928. <standard draft="contributed">Čas Rotherovej stanice</standard>
  2929. </long>
  2930. </metazone>
  2931. <metazone type="Sakhalin">
  2932. <long>
  2933. <generic draft="contributed">Sachalinský čas</generic>
  2934. <standard draft="contributed">Sachalinský štandardný čas</standard>
  2935. <daylight draft="contributed">Sachalinský letný čas</daylight>
  2936. </long>
  2937. </metazone>
  2938. <metazone type="Samara">
  2939. <long>
  2940. <generic draft="contributed">Samarský čas</generic>
  2941. <standard draft="contributed">Samarský štandardný čas</standard>
  2942. <daylight draft="contributed">Samarský letný čas</daylight>
  2943. </long>
  2944. </metazone>
  2945. <metazone type="Samoa">
  2946. <long>
  2947. <generic draft="contributed">Samojský čas</generic>
  2948. <standard draft="contributed">Samojský štandardný čas</standard>
  2949. <daylight draft="contributed">Samojský letný čas</daylight>
  2950. </long>
  2951. </metazone>
  2952. <metazone type="Seychelles">
  2953. <long>
  2954. <standard draft="contributed">Seychelský čas</standard>
  2955. </long>
  2956. </metazone>
  2957. <metazone type="Singapore">
  2958. <long>
  2959. <standard draft="contributed">Singapurský štandardný čas</standard>
  2960. </long>
  2961. </metazone>
  2962. <metazone type="Solomon">
  2963. <long>
  2964. <standard draft="contributed">Čas Šalamúnových ostrovov</standard>
  2965. </long>
  2966. </metazone>
  2967. <metazone type="South_Georgia">
  2968. <long>
  2969. <standard draft="contributed">Čas Južnej Georgie</standard>
  2970. </long>
  2971. </metazone>
  2972. <metazone type="Suriname">
  2973. <long>
  2974. <standard>Surinamský čas</standard>
  2975. </long>
  2976. </metazone>
  2977. <metazone type="Syowa">
  2978. <long>
  2979. <standard draft="contributed">Čas stanice Šówa</standard>
  2980. </long>
  2981. </metazone>
  2982. <metazone type="Tahiti">
  2983. <long>
  2984. <standard draft="contributed">Tahitský čas</standard>
  2985. </long>
  2986. </metazone>
  2987. <metazone type="Taipei">
  2988. <long>
  2989. <generic draft="contributed">Tchajpejský čas</generic>
  2990. <standard draft="contributed">Tchajpejský štandardný čas</standard>
  2991. <daylight draft="contributed">Tchajpejský letný čas</daylight>
  2992. </long>
  2993. </metazone>
  2994. <metazone type="Tajikistan">
  2995. <long>
  2996. <standard draft="contributed">Tadžický čas</standard>
  2997. </long>
  2998. </metazone>
  2999. <metazone type="Tokelau">
  3000. <long>
  3001. <standard draft="contributed">Tokelauský čas</standard>
  3002. </long>
  3003. </metazone>
  3004. <metazone type="Tonga">
  3005. <long>
  3006. <generic draft="contributed">Tonžský čas</generic>
  3007. <standard draft="contributed">Tonžský štandardný čas</standard>
  3008. <daylight draft="contributed">Tonžský letný čas</daylight>
  3009. </long>
  3010. </metazone>
  3011. <metazone type="Truk">
  3012. <long>
  3013. <standard draft="contributed">Chuukský čas</standard>
  3014. </long>
  3015. </metazone>
  3016. <metazone type="Turkmenistan">
  3017. <long>
  3018. <generic draft="contributed">Turkménsky čas</generic>
  3019. <standard draft="contributed">Turkménsky štandardný čas</standard>
  3020. <daylight draft="contributed">Turkménsky letný čas</daylight>
  3021. </long>
  3022. </metazone>
  3023. <metazone type="Tuvalu">
  3024. <long>
  3025. <standard draft="contributed">Tuvalský čas</standard>
  3026. </long>
  3027. </metazone>
  3028. <metazone type="Uruguay">
  3029. <long>
  3030. <generic draft="contributed">Uruguajský čas</generic>
  3031. <standard draft="contributed">Uruguajský štandardný čas</standard>
  3032. <daylight draft="contributed">Uruguajský letný čas</daylight>
  3033. </long>
  3034. </metazone>
  3035. <metazone type="Uzbekistan">
  3036. <long>
  3037. <generic draft="contributed">Uzbecký čas</generic>
  3038. <standard draft="contributed">Uzbecký štandardný čas</standard>
  3039. <daylight draft="contributed">Uzbecký letný čas</daylight>
  3040. </long>
  3041. </metazone>
  3042. <metazone type="Vanuatu">
  3043. <long>
  3044. <generic draft="contributed">Vanuatský čas</generic>
  3045. <standard draft="contributed">Vanuatský štandardný čas</standard>
  3046. <daylight draft="contributed">Vanuatský letný čas</daylight>
  3047. </long>
  3048. </metazone>
  3049. <metazone type="Venezuela">
  3050. <long>
  3051. <standard draft="contributed">Venezuelský čas</standard>
  3052. </long>
  3053. </metazone>
  3054. <metazone type="Vladivostok">
  3055. <long>
  3056. <generic draft="contributed">Vladivostocký čas</generic>
  3057. <standard draft="contributed">Vladivostocký štandardný čas</standard>
  3058. <daylight draft="contributed">Vladivostocký letný čas</daylight>
  3059. </long>
  3060. </metazone>
  3061. <metazone type="Volgograd">
  3062. <long>
  3063. <generic draft="contributed">Volgogradský čas</generic>
  3064. <standard draft="contributed">Volgogradský štandardný čas</standard>
  3065. <daylight draft="contributed">Volgogradský letný čas</daylight>
  3066. </long>
  3067. </metazone>
  3068. <metazone type="Vostok">
  3069. <long>
  3070. <standard draft="contributed">Čas stanice Vostok</standard>
  3071. </long>
  3072. </metazone>
  3073. <metazone type="Wake">
  3074. <long>
  3075. <standard draft="contributed">Čas ostrova Wake</standard>
  3076. </long>
  3077. </metazone>
  3078. <metazone type="Wallis">
  3079. <long>
  3080. <standard draft="contributed">Čas ostrovov Wallis a Futuna</standard>
  3081. </long>
  3082. </metazone>
  3083. <metazone type="Yakutsk">
  3084. <long>
  3085. <generic draft="contributed">Jakutský čas</generic>
  3086. <standard draft="contributed">Jakutský štandardný čas</standard>
  3087. <daylight draft="contributed">Jakutský letný čas</daylight>
  3088. </long>
  3089. </metazone>
  3090. <metazone type="Yekaterinburg">
  3091. <long>
  3092. <generic draft="contributed">Jekaterinburgský čas</generic>
  3093. <standard draft="contributed">Jekaterinburgský štandardný čas</standard>
  3094. <daylight draft="contributed">Jekaterinburský letný čas</daylight>
  3095. </long>
  3096. </metazone>
  3097. </timeZoneNames>
  3098. </dates>
  3099. <numbers>
  3100. <symbols numberSystem="latn">
  3101. <decimal>,</decimal>
  3102. <group> </group>
  3103. <list>;</list>
  3104. <percentSign>%</percentSign>
  3105. <plusSign>+</plusSign>
  3106. <minusSign>-</minusSign>
  3107. <exponential>E</exponential>
  3108. <superscriptingExponent draft="contributed">×</superscriptingExponent>
  3109. <perMille>‰</perMille>
  3110. <infinity>∞</infinity>
  3111. <nan>NaN</nan>
  3112. </symbols>
  3113. <decimalFormats numberSystem="latn">
  3114. <decimalFormatLength>
  3115. <decimalFormat>
  3116. <pattern>#,##0.###</pattern>
  3117. </decimalFormat>
  3118. </decimalFormatLength>
  3119. <decimalFormatLength type="long">
  3120. <decimalFormat>
  3121. <pattern type="1000" count="one">0 tisíc</pattern>
  3122. <pattern type="1000" count="few">0 tisíc</pattern>
  3123. <pattern type="1000" count="many">0 tisíc</pattern>
  3124. <pattern type="1000" count="other">0 tisíc</pattern>
  3125. <pattern type="10000" count="one">00 tisíc</pattern>
  3126. <pattern type="10000" count="few">00 tisíc</pattern>
  3127. <pattern type="10000" count="many">00 tisíc</pattern>
  3128. <pattern type="10000" count="other">00 tisíc</pattern>
  3129. <pattern type="100000" count="one">000 tisíc</pattern>
  3130. <pattern type="100000" count="few">000 tisíc</pattern>
  3131. <pattern type="100000" count="many">000 tisíc</pattern>
  3132. <pattern type="100000" count="other">000 tisíc</pattern>
  3133. <pattern type="1000000" count="one">0 milión</pattern>
  3134. <pattern type="1000000" count="few">0 milióny</pattern>
  3135. <pattern type="1000000" count="many">0 miliónov</pattern>
  3136. <pattern type="1000000" count="other">0 miliónov</pattern>
  3137. <pattern type="10000000" count="one">00 milión</pattern>
  3138. <pattern type="10000000" count="few">00 milióny</pattern>
  3139. <pattern type="10000000" count="many">00 miliónov</pattern>
  3140. <pattern type="10000000" count="other">00 miliónov</pattern>
  3141. <pattern type="100000000" count="one">000 milión</pattern>
  3142. <pattern type="100000000" count="few">000 milióny</pattern>
  3143. <pattern type="100000000" count="many">000 miliónov</pattern>
  3144. <pattern type="100000000" count="other">000 miliónov</pattern>
  3145. <pattern type="1000000000" count="one">0 miliarda</pattern>
  3146. <pattern type="1000000000" count="few">0 miliardy</pattern>
  3147. <pattern type="1000000000" count="many">0 miliard</pattern>
  3148. <pattern type="1000000000" count="other">0 miliard</pattern>
  3149. <pattern type="10000000000" count="one">00 miliarda</pattern>
  3150. <pattern type="10000000000" count="few">00 miliárdy</pattern>
  3151. <pattern type="10000000000" count="many">00 miliárd</pattern>
  3152. <pattern type="10000000000" count="other">00 miliárd</pattern>
  3153. <pattern type="100000000000" count="one">000 miliarda</pattern>
  3154. <pattern type="100000000000" count="few">000 miliárdy</pattern>
  3155. <pattern type="100000000000" count="many">000 miliárd</pattern>
  3156. <pattern type="100000000000" count="other">000 miliárd</pattern>
  3157. <pattern type="1000000000000" count="one">0 bilión</pattern>
  3158. <pattern type="1000000000000" count="few">0 bilióny</pattern>
  3159. <pattern type="1000000000000" count="many">0 biliónov</pattern>
  3160. <pattern type="1000000000000" count="other">0 biliónov</pattern>
  3161. <pattern type="10000000000000" count="one">00 bilión</pattern>
  3162. <pattern type="10000000000000" count="few">00 bilióny</pattern>
  3163. <pattern type="10000000000000" count="many">00 biliónov</pattern>
  3164. <pattern type="10000000000000" count="other">00 biliónov</pattern>
  3165. <pattern type="100000000000000" count="one">000 bilión</pattern>
  3166. <pattern type="100000000000000" count="few">000 bilióny</pattern>
  3167. <pattern type="100000000000000" count="many">000 biliónov</pattern>
  3168. <pattern type="100000000000000" count="other">000 biliónov</pattern>
  3169. </decimalFormat>
  3170. </decimalFormatLength>
  3171. <decimalFormatLength type="short">
  3172. <decimalFormat>
  3173. <pattern type="1000" count="one">0 tis'.'</pattern>
  3174. <pattern type="1000" count="few">0 tis'.'</pattern>
  3175. <pattern type="1000" count="many">0 tis'.'</pattern>
  3176. <pattern type="1000" count="other">0 tis'.'</pattern>
  3177. <pattern type="10000" count="one">00 tis'.'</pattern>
  3178. <pattern type="10000" count="few">00 tis'.'</pattern>
  3179. <pattern type="10000" count="many">00 tis'.'</pattern>
  3180. <pattern type="10000" count="other">00 tis'.'</pattern>
  3181. <pattern type="100000" count="one">000 tis'.'</pattern>
  3182. <pattern type="100000" count="few">000 tis'.'</pattern>
  3183. <pattern type="100000" count="many">000 tis'.'</pattern>
  3184. <pattern type="100000" count="other">000 tis'.'</pattern>
  3185. <pattern type="1000000" count="one">0 mil'.'</pattern>
  3186. <pattern type="1000000" count="few">0 mil'.'</pattern>
  3187. <pattern type="1000000" count="many">0 mil'.'</pattern>
  3188. <pattern type="1000000" count="other">0 mil'.'</pattern>
  3189. <pattern type="10000000" count="one">00 mil'.'</pattern>
  3190. <pattern type="10000000" count="few">00 mil'.'</pattern>
  3191. <pattern type="10000000" count="many">00 mil'.'</pattern>
  3192. <pattern type="10000000" count="other">00 mil'.'</pattern>
  3193. <pattern type="100000000" count="one">000 mil'.'</pattern>
  3194. <pattern type="100000000" count="few">000 mil'.'</pattern>
  3195. <pattern type="100000000" count="many">000 mil'.'</pattern>
  3196. <pattern type="100000000" count="other">000 mil'.'</pattern>
  3197. <pattern type="1000000000" count="one">0 mld'.'</pattern>
  3198. <pattern type="1000000000" count="few">0 mld'.'</pattern>
  3199. <pattern type="1000000000" count="many">0 mld'.'</pattern>
  3200. <pattern type="1000000000" count="other">0 mld'.'</pattern>
  3201. <pattern type="10000000000" count="one">00 mld'.'</pattern>
  3202. <pattern type="10000000000" count="few">00 mld'.'</pattern>
  3203. <pattern type="10000000000" count="many">00 mld'.'</pattern>
  3204. <pattern type="10000000000" count="other">00 mld'.'</pattern>
  3205. <pattern type="100000000000" count="one">000 mld'.'</pattern>
  3206. <pattern type="100000000000" count="few">000 mld'.'</pattern>
  3207. <pattern type="100000000000" count="many">000 mld'.'</pattern>
  3208. <pattern type="100000000000" count="other">000 mld'.'</pattern>
  3209. <pattern type="1000000000000" count="one">0 bil'.'</pattern>
  3210. <pattern type="1000000000000" count="few">0 bil'.'</pattern>
  3211. <pattern type="1000000000000" count="many">0 bil'.'</pattern>
  3212. <pattern type="1000000000000" count="other">0 bil'.'</pattern>
  3213. <pattern type="10000000000000" count="one">00 bil'.'</pattern>
  3214. <pattern type="10000000000000" count="few">00 bil'.'</pattern>
  3215. <pattern type="10000000000000" count="many">00 bil'.'</pattern>
  3216. <pattern type="10000000000000" count="other">00 bil'.'</pattern>
  3217. <pattern type="100000000000000" count="one">000 bil'.'</pattern>
  3218. <pattern type="100000000000000" count="few">000 bil'.'</pattern>
  3219. <pattern type="100000000000000" count="many">000 bil'.'</pattern>
  3220. <pattern type="100000000000000" count="other">000 bil'.'</pattern>
  3221. </decimalFormat>
  3222. </decimalFormatLength>
  3223. </decimalFormats>
  3224. <scientificFormats numberSystem="latn">
  3225. <scientificFormatLength>
  3226. <scientificFormat>
  3227. <pattern>#E0</pattern>
  3228. </scientificFormat>
  3229. </scientificFormatLength>
  3230. </scientificFormats>
  3231. <percentFormats numberSystem="latn">
  3232. <percentFormatLength>
  3233. <percentFormat>
  3234. <pattern>#,##0 %</pattern>
  3235. </percentFormat>
  3236. </percentFormatLength>
  3237. </percentFormats>
  3238. <currencyFormats numberSystem="latn">
  3239. <currencyFormatLength>
  3240. <currencyFormat type="standard">
  3241. <pattern>#,##0.00 ¤</pattern>
  3242. </currencyFormat>
  3243. <currencyFormat type="accounting">
  3244. <pattern draft="contributed">#,##0.00 ¤;(#,##0.00 ¤)</pattern>
  3245. </currencyFormat>
  3246. </currencyFormatLength>
  3247. <unitPattern count="one">{0} {1}</unitPattern>
  3248. <unitPattern count="few">{0} {1}</unitPattern>
  3249. <unitPattern count="many">{0} {1}</unitPattern>
  3250. <unitPattern count="other">{0} {1}</unitPattern>
  3251. </currencyFormats>
  3252. <currencies>
  3253. <currency type="ADP">
  3254. <displayName>Andorská peseta</displayName>
  3255. </currency>
  3256. <currency type="AED">
  3257. <displayName>SAE dirham</displayName>
  3258. <displayName count="one">SAE dirham</displayName>
  3259. <displayName count="few">SAE dirhamy</displayName>
  3260. <displayName count="many">SAE dirhamov</displayName>
  3261. <displayName count="other">SAE dirhamov</displayName>
  3262. </currency>
  3263. <currency type="AFN">
  3264. <displayName>Afganský afgání</displayName>
  3265. <displayName count="one">afganský afgání</displayName>
  3266. <displayName count="few">afganské afgání</displayName>
  3267. <displayName count="many">afganského afgání</displayName>
  3268. <displayName count="other">afganských afgání</displayName>
  3269. </currency>
  3270. <currency type="ALL">
  3271. <displayName>Albánsky lek</displayName>
  3272. </currency>
  3273. <currency type="AMD">
  3274. <displayName>Armenský dram</displayName>
  3275. </currency>
  3276. <currency type="ANG">
  3277. <displayName>Antilský gulden</displayName>
  3278. <displayName count="one">antilský gulden</displayName>
  3279. <displayName count="few">antilské guldeny</displayName>
  3280. <displayName count="many">antilského guldena</displayName>
  3281. <displayName count="other">antilských guldenov</displayName>
  3282. </currency>
  3283. <currency type="AOA">
  3284. <displayName>Angolská kwanza</displayName>
  3285. </currency>
  3286. <currency type="AOK">
  3287. <displayName>Angolská kwanza (1977–1990)</displayName>
  3288. </currency>
  3289. <currency type="AON">
  3290. <displayName>Angolská nová kwanza (1990–2000)</displayName>
  3291. </currency>
  3292. <currency type="AOR">
  3293. <displayName>Angolská kwanza Reajustado (1995–1999)</displayName>
  3294. </currency>
  3295. <currency type="ARA">
  3296. <displayName>Argentinský austral</displayName>
  3297. </currency>
  3298. <currency type="ARP">
  3299. <displayName>Argentinské peso (1983–1985)</displayName>
  3300. </currency>
  3301. <currency type="ARS">
  3302. <displayName>Argentinské peso</displayName>
  3303. </currency>
  3304. <currency type="ATS">
  3305. <displayName>Rakúsky šiling</displayName>
  3306. </currency>
  3307. <currency type="AUD">
  3308. <displayName>Austrálsky dolár</displayName>
  3309. <displayName count="one">austrálsky dolár</displayName>
  3310. <displayName count="few">austrálske doláre</displayName>
  3311. <displayName count="many">austrálskeho dolára</displayName>
  3312. <displayName count="other">austrálskych dolárov</displayName>
  3313. <symbol draft="contributed">AUD</symbol>
  3314. </currency>
  3315. <currency type="AWG">
  3316. <displayName>Arubský guilder</displayName>
  3317. </currency>
  3318. <currency type="AZM">
  3319. <displayName>Azerbajdžanský manat (1993–2006)</displayName>
  3320. <displayName count="one">azerbajdžanský manat (1993–2006)</displayName>
  3321. <displayName count="few">azerbajdžanské manaty (1993–2006)</displayName>
  3322. <displayName count="many">azerbajdžanského manatu (1993–2006)</displayName>
  3323. <displayName count="other">azerbajdžanských manatov (1993–2006)</displayName>
  3324. </currency>
  3325. <currency type="AZN">
  3326. <displayName>Azerbajdžanský manat</displayName>
  3327. <displayName count="one">azerbajdžanský manat</displayName>
  3328. <displayName count="few">azerbajdžanské manaty</displayName>
  3329. <displayName count="many">azerbajdžanského manatu</displayName>
  3330. <displayName count="other">azerbajdžanských manatov</displayName>
  3331. </currency>
  3332. <currency type="BAD">
  3333. <displayName>Bosnianský dinár</displayName>
  3334. </currency>
  3335. <currency type="BAM">
  3336. <displayName>Bosnianska konvertibilná marka</displayName>
  3337. <displayName count="one">bosnianska konvertibilná marka</displayName>
  3338. <displayName count="few">bosnianske konvertibilné marky</displayName>
  3339. <displayName count="many">bosnianskej konvertibilnej marky</displayName>
  3340. <displayName count="other">bosnianskych konvertibilných mariek</displayName>
  3341. </currency>
  3342. <currency type="BBD">
  3343. <displayName>Barbadoský dolár</displayName>
  3344. <displayName count="one">barbadoský dolár</displayName>
  3345. <displayName count="few">barbadoské doláre</displayName>
  3346. <displayName count="many">barbadoského dolára</displayName>
  3347. <displayName count="other">barbadoských dolárov</displayName>
  3348. </currency>
  3349. <currency type="BDT">
  3350. <displayName>Bangladéšska taka</displayName>
  3351. </currency>
  3352. <currency type="BEC">
  3353. <displayName>Belgický frank (konvertibilný)</displayName>
  3354. </currency>
  3355. <currency type="BEF">
  3356. <displayName>Belgický frank</displayName>
  3357. </currency>
  3358. <currency type="BEL">
  3359. <displayName>Belgický frank (finančný)</displayName>
  3360. </currency>
  3361. <currency type="BGL">
  3362. <displayName>Bulharský leva</displayName>
  3363. </currency>
  3364. <currency type="BGN">
  3365. <displayName>Bulharský lev</displayName>
  3366. <displayName count="one">bulharský lev</displayName>
  3367. <displayName count="few">bulharské leva</displayName>
  3368. <displayName count="many">bulharského leva</displayName>
  3369. <displayName count="other">bulharských leva</displayName>
  3370. </currency>
  3371. <currency type="BHD">
  3372. <displayName>Bahrajnský dinár</displayName>
  3373. <displayName count="one">bahrajnský dinár</displayName>
  3374. <displayName count="few">bahrajnské dináre</displayName>
  3375. <displayName count="many">bahrajnského dinára</displayName>
  3376. <displayName count="other">bahrajnských dinárov</displayName>
  3377. </currency>
  3378. <currency type="BIF">
  3379. <displayName>Burundský frank</displayName>
  3380. </currency>
  3381. <currency type="BMD">
  3382. <displayName>Bermudský dolár</displayName>
  3383. </currency>
  3384. <currency type="BND">
  3385. <displayName>Brunejský dolár</displayName>
  3386. <displayName count="one">brunejský dolár</displayName>
  3387. <displayName count="few">brunejské doláre</displayName>
  3388. <displayName count="many">brunejského dolára</displayName>
  3389. <displayName count="other">brunejských dolárov</displayName>
  3390. </currency>
  3391. <currency type="BOB">
  3392. <displayName>Bolívijské boliviano</displayName>
  3393. <displayName count="one">bolívijské boliviano</displayName>
  3394. <displayName count="few">bolívijské boliviany</displayName>
  3395. <displayName count="many">bolívijského boliviana</displayName>
  3396. <displayName count="other">bolívijských bolivianov</displayName>
  3397. </currency>
  3398. <currency type="BOP">
  3399. <displayName>Bolivíjske peso</displayName>
  3400. </currency>
  3401. <currency type="BOV">
  3402. <displayName>Bolivíjske mvdol</displayName>
  3403. </currency>
  3404. <currency type="BRB">
  3405. <displayName>Bolivíjske Cruzeiro Novo (1967–1986)</displayName>
  3406. </currency>
  3407. <currency type="BRC">
  3408. <displayName>Bolivíjske cruzado</displayName>
  3409. </currency>
  3410. <currency type="BRE">
  3411. <displayName>Bolivíjske cruzeiro (1990–1993)</displayName>
  3412. </currency>
  3413. <currency type="BRL">
  3414. <displayName>Brazílsky real</displayName>
  3415. <displayName count="one">brazílsky real</displayName>
  3416. <displayName count="few">brazílske realy</displayName>
  3417. <displayName count="many">brazílskeho realu</displayName>
  3418. <displayName count="other">brazílskych realov</displayName>
  3419. <symbol draft="contributed">BRL</symbol>
  3420. </currency>
  3421. <currency type="BRN">
  3422. <displayName>Brazílske Cruzado Novo</displayName>
  3423. </currency>
  3424. <currency type="BRR">
  3425. <displayName>Brazílske cruzeiro</displayName>
  3426. </currency>
  3427. <currency type="BSD">
  3428. <displayName>Bahamský dolár</displayName>
  3429. </currency>
  3430. <currency type="BTN">
  3431. <displayName>Bhutánsky ngultrum</displayName>
  3432. <displayName count="one">bhutánsky ngultrum</displayName>
  3433. <displayName count="few">bhutánske ngultrumy</displayName>
  3434. <displayName count="many">bhutánskeho ngultrumu</displayName>
  3435. <displayName count="other">bhutánskych ngultrumov</displayName>
  3436. </currency>
  3437. <currency type="BUK">
  3438. <displayName>Burmese Kyat</displayName>
  3439. </currency>
  3440. <currency type="BWP">
  3441. <displayName>Botswanská pula</displayName>
  3442. <displayName count="one">botswanská pula</displayName>
  3443. <displayName count="few">botswanské puly</displayName>
  3444. <displayName count="many">botswanskej puly</displayName>
  3445. <displayName count="other">botswanských púl</displayName>
  3446. </currency>
  3447. <currency type="BYB">
  3448. <displayName>Bieloruský nový rubeľ (1994–1999)</displayName>
  3449. <displayName count="one">bieloruský nový rubeľ (1994–1999)</displayName>
  3450. <displayName count="few">bieloruské nové ruble (1994–1999)</displayName>
  3451. <displayName count="many">bieloruského nového rubľa (1994–1999)</displayName>
  3452. <displayName count="other">bieloruských nových rubľov (1994–1999)</displayName>
  3453. </currency>
  3454. <currency type="BYR">
  3455. <displayName>Bieloruský rubeľ</displayName>
  3456. <displayName count="one">bieloruský rubeľ</displayName>
  3457. <displayName count="few">bieloruské ruble</displayName>
  3458. <displayName count="many">bieloruského rubľa</displayName>
  3459. <displayName count="other">bieloruských rubľov</displayName>
  3460. </currency>
  3461. <currency type="BZD">
  3462. <displayName>Belizský dolár</displayName>
  3463. <displayName count="one">belizský dolár</displayName>
  3464. <displayName count="few">belizské doláre</displayName>
  3465. <displayName count="many">belizských dolárov</displayName>
  3466. <displayName count="other">belizských dolárov</displayName>
  3467. </currency>
  3468. <currency type="CAD">
  3469. <displayName>Kanadský dolár</displayName>
  3470. <displayName count="one">kanadský dolár</displayName>
  3471. <displayName count="few">kanadské doláre</displayName>
  3472. <displayName count="many">kanadského dolára</displayName>
  3473. <displayName count="other">kanadských dolárov</displayName>
  3474. <symbol draft="contributed">CAD</symbol>
  3475. </currency>
  3476. <currency type="CDF">
  3477. <displayName>Konžský frank</displayName>
  3478. <displayName count="one">konžský frank</displayName>
  3479. <displayName count="few">konžské franky</displayName>
  3480. <displayName count="many">konžského franku</displayName>
  3481. <displayName count="other">konžských frankov</displayName>
  3482. </currency>
  3483. <currency type="CHF">
  3484. <displayName>Švajčiarsky frank</displayName>
  3485. <displayName count="one">švajčiarsky frank</displayName>
  3486. <displayName count="few">švajčiarske franky</displayName>
  3487. <displayName count="many">švajčiarskeho franku</displayName>
  3488. <displayName count="other">švajčiarskych frankov</displayName>
  3489. </currency>
  3490. <currency type="CLF">
  3491. <displayName>Čílske Unidades de Fomento</displayName>
  3492. </currency>
  3493. <currency type="CLP">
  3494. <displayName>Čílske peso</displayName>
  3495. </currency>
  3496. <currency type="CNY">
  3497. <displayName>Čínsky jüan</displayName>
  3498. <displayName count="one">čínsky jüan</displayName>
  3499. <displayName count="few">čínske jüany</displayName>
  3500. <displayName count="many">čínskeho jüana</displayName>
  3501. <displayName count="other">čínskych jüanov</displayName>
  3502. <symbol draft="contributed">CNY</symbol>
  3503. </currency>
  3504. <currency type="COP">
  3505. <displayName>Kolumbijské peso</displayName>
  3506. <displayName count="one">kolumbijské peso</displayName>
  3507. <displayName count="few">kolumbijské pesos</displayName>
  3508. <displayName count="many">kolumbijského pesa</displayName>
  3509. <displayName count="other">kolumbijských pesos</displayName>
  3510. </currency>
  3511. <currency type="CRC">
  3512. <displayName>Kostarický colón</displayName>
  3513. <displayName count="one">kostarický colón</displayName>
  3514. <displayName count="few">kostarické colóny</displayName>
  3515. <displayName count="many">kostarického colónu</displayName>
  3516. <displayName count="other">kostarických colónov</displayName>
  3517. </currency>
  3518. <currency type="CSK">
  3519. <displayName>Československá koruna</displayName>
  3520. </currency>
  3521. <currency type="CUC">
  3522. <displayName>Kubánske konvertibilné peso</displayName>
  3523. <displayName count="one">kubánske konvertibilné peso</displayName>
  3524. <displayName count="few">kubánske konvertibilné pesos</displayName>
  3525. <displayName count="many">kubánskeho konvertibilného pesa</displayName>
  3526. <displayName count="other">kubánskych konvertibilných pesos</displayName>
  3527. </currency>
  3528. <currency type="CUP">
  3529. <displayName>Kubánske peso</displayName>
  3530. <displayName count="one">kubánske peso</displayName>
  3531. <displayName count="few">kubánske pesos</displayName>
  3532. <displayName count="many">kubánskeho pesa</displayName>
  3533. <displayName count="other">kubánskych pesos</displayName>
  3534. </currency>
  3535. <currency type="CVE">
  3536. <displayName>Kapverdské escudo</displayName>
  3537. <displayName count="one">kapverdské escudo</displayName>
  3538. <displayName count="few">kapverdské escudá</displayName>
  3539. <displayName count="many">kapverdského escuda</displayName>
  3540. <displayName count="other">kapverdských escúd</displayName>
  3541. </currency>
  3542. <currency type="CYP">
  3543. <displayName>Cypruská libra</displayName>
  3544. </currency>
  3545. <currency type="CZK">
  3546. <displayName>Česká koruna</displayName>
  3547. <displayName count="one">česká koruna</displayName>
  3548. <displayName count="few">české koruny</displayName>
  3549. <displayName count="many">českej koruny</displayName>
  3550. <displayName count="other">českých korún</displayName>
  3551. </currency>
  3552. <currency type="DDM">
  3553. <displayName>Východonemecká marka</displayName>
  3554. </currency>
  3555. <currency type="DEM">
  3556. <displayName>Nemecká marka</displayName>
  3557. </currency>
  3558. <currency type="DJF">
  3559. <displayName>Džibutský frank</displayName>
  3560. </currency>
  3561. <currency type="DKK">
  3562. <displayName>Dánska koruna</displayName>
  3563. <displayName count="one">dánska koruna</displayName>
  3564. <displayName count="few">dánske koruny</displayName>
  3565. <displayName count="many">dánskej koruny</displayName>
  3566. <displayName count="other">dánskych korún</displayName>
  3567. </currency>
  3568. <currency type="DOP">
  3569. <displayName>Dominikánske peso</displayName>
  3570. </currency>
  3571. <currency type="DZD">
  3572. <displayName>Alžírsky dinár</displayName>
  3573. </currency>
  3574. <currency type="ECS">
  3575. <displayName>Ekuadorský sucre</displayName>
  3576. </currency>
  3577. <currency type="ECV">
  3578. <displayName>Ekuadorský Unidad de Valor Constante (UVC)</displayName>
  3579. </currency>
  3580. <currency type="EEK">
  3581. <displayName>Estónska kroon</displayName>
  3582. <displayName count="one">estónska kroon</displayName>
  3583. <displayName count="few">estónske kroony</displayName>
  3584. <displayName count="many">estónskej kroony</displayName>
  3585. <displayName count="other">estónskych kroon</displayName>
  3586. </currency>
  3587. <currency type="EGP">
  3588. <displayName>Egyptská libra</displayName>
  3589. </currency>
  3590. <currency type="ERN">
  3591. <displayName>Eritrejská nakfa</displayName>
  3592. </currency>
  3593. <currency type="ESP">
  3594. <displayName>Španielská peseta</displayName>
  3595. </currency>
  3596. <currency type="ETB">
  3597. <displayName>Ethiopský birr</displayName>
  3598. </currency>
  3599. <currency type="EUR">
  3600. <displayName>Euro</displayName>
  3601. <displayName count="one">euro</displayName>
  3602. <displayName count="few">eurá</displayName>
  3603. <displayName count="many">eura</displayName>
  3604. <displayName count="other">eur</displayName>
  3605. <symbol draft="contributed">€</symbol>
  3606. </currency>
  3607. <currency type="FIM">
  3608. <displayName>Finská marka</displayName>
  3609. </currency>
  3610. <currency type="FJD">
  3611. <displayName>Fidžijský dolár</displayName>
  3612. <displayName count="one">fidžijský dolár</displayName>
  3613. <displayName count="few">fidžijské doláre</displayName>
  3614. <displayName count="many">fidžijského dolára</displayName>
  3615. <displayName count="other">fidžijských dolárov</displayName>
  3616. </currency>
  3617. <currency type="FKP">
  3618. <displayName>Falklandská libra</displayName>
  3619. </currency>
  3620. <currency type="FRF">
  3621. <displayName>Francúzsky frank</displayName>
  3622. </currency>
  3623. <currency type="GBP">
  3624. <displayName>Britská libra</displayName>
  3625. <displayName count="one">britská libra</displayName>
  3626. <displayName count="few">britskej libry</displayName>
  3627. <displayName count="many">britskej libry</displayName>
  3628. <displayName count="other">britských libier</displayName>
  3629. <symbol draft="contributed">GBP</symbol>
  3630. </currency>
  3631. <currency type="GEK">
  3632. <displayName>Gruzínsky Kupon Larit</displayName>
  3633. </currency>
  3634. <currency type="GEL">
  3635. <displayName>Gruzínsky lari</displayName>
  3636. </currency>
  3637. <currency type="GHC">
  3638. <displayName>Ghanský cedi (1979–2007)</displayName>
  3639. <displayName count="one">ghanský cedi (1979–2007)</displayName>
  3640. <displayName count="few">ghanské cedi (1979–2007)</displayName>
  3641. <displayName count="many">ghanského cedi (1979–2007)</displayName>
  3642. <displayName count="other">ghanských cedi (1979–2007)</displayName>
  3643. </currency>
  3644. <currency type="GHS">
  3645. <displayName>Ghanský cedi</displayName>
  3646. <displayName count="one">ghanský cedi</displayName>
  3647. <displayName count="few">ghanské cedi</displayName>
  3648. <displayName count="many">ghanského cedi</displayName>
  3649. <displayName count="other">ghanských cedi</displayName>
  3650. </currency>
  3651. <currency type="GIP">
  3652. <displayName>Gibraltarská libra</displayName>
  3653. </currency>
  3654. <currency type="GMD">
  3655. <displayName>Gambijský dalasi</displayName>
  3656. <displayName count="one">gambijský dalasi</displayName>
  3657. <displayName count="few">gambijské dalasi</displayName>
  3658. <displayName count="many">gambijského dalasi</displayName>
  3659. <displayName count="other">gambijských dalasi</displayName>
  3660. </currency>
  3661. <currency type="GNF">
  3662. <displayName>Guinejský frank</displayName>
  3663. </currency>
  3664. <currency type="GNS">
  3665. <displayName>Guinejský syli</displayName>
  3666. </currency>
  3667. <currency type="GQE">
  3668. <displayName>Rovníková Guinea Ekwele Guineana</displayName>
  3669. </currency>
  3670. <currency type="GRD">
  3671. <displayName>Grécka drachma</displayName>
  3672. </currency>
  3673. <currency type="GTQ">
  3674. <displayName>Guatemalský quetzal</displayName>
  3675. </currency>
  3676. <currency type="GWE">
  3677. <displayName>Portugalská Guinea eskudo</displayName>
  3678. </currency>
  3679. <currency type="GWP">
  3680. <displayName>Guinea-Bissau peso</displayName>
  3681. <displayName count="one">Guinea-Bissau peso</displayName>
  3682. <displayName count="few">Guinea-Bissau pesos</displayName>
  3683. <displayName count="many">Guinea-Bissau pesa</displayName>
  3684. <displayName count="other">Guinea-Bissau pesos</displayName>
  3685. </currency>
  3686. <currency type="GYD">
  3687. <displayName>Guyanský dolár</displayName>
  3688. </currency>
  3689. <currency type="HKD">
  3690. <displayName>Hongkonský dolár</displayName>
  3691. <displayName count="one">hongkonský dolár</displayName>
  3692. <displayName count="few">hongkonské doláre</displayName>
  3693. <displayName count="many">hongkonského dolára</displayName>
  3694. <displayName count="other">hongkonských dolárov</displayName>
  3695. <symbol draft="contributed">HKD</symbol>
  3696. </currency>
  3697. <currency type="HNL">
  3698. <displayName>Hoduraská lempira</displayName>
  3699. <displayName count="one">honduraská lempira</displayName>
  3700. <displayName count="few">honduraské lempiry</displayName>
  3701. <displayName count="many">honduraskej lempiry</displayName>
  3702. <displayName count="other">honduraských lempír</displayName>
  3703. </currency>
  3704. <currency type="HRD">
  3705. <displayName>Chorvátsky dinár</displayName>
  3706. </currency>
  3707. <currency type="HRK">
  3708. <displayName>Chorvátska kuna</displayName>
  3709. </currency>
  3710. <currency type="HTG">
  3711. <displayName>Haitské gourde</displayName>
  3712. </currency>
  3713. <currency type="HUF">
  3714. <displayName>Maďarský forint</displayName>
  3715. <displayName count="one">maďarský forint</displayName>
  3716. <displayName count="few">maďarské forinty</displayName>
  3717. <displayName count="many">maďarského forinta</displayName>
  3718. <displayName count="other">maďarských forintov</displayName>
  3719. </currency>
  3720. <currency type="IDR">
  3721. <displayName>Indonézska rupia</displayName>
  3722. <displayName count="one">indonézska rupia</displayName>
  3723. <displayName count="few">indonézske rupie</displayName>
  3724. <displayName count="many">indonézskej rupie</displayName>
  3725. <displayName count="other">indonézskych rupií</displayName>
  3726. </currency>
  3727. <currency type="IEP">
  3728. <displayName>Írska libra</displayName>
  3729. </currency>
  3730. <currency type="ILP">
  3731. <displayName>Izraelská libra</displayName>
  3732. </currency>
  3733. <currency type="ILS">
  3734. <displayName>Izraelský šekel</displayName>
  3735. <symbol draft="contributed">₪</symbol>
  3736. </currency>
  3737. <currency type="INR">
  3738. <displayName>Indická rupia</displayName>
  3739. <displayName count="one">indická rupia</displayName>
  3740. <displayName count="few">indické rupie</displayName>
  3741. <displayName count="many">indickej rupie</displayName>
  3742. <displayName count="other">indických rupií</displayName>
  3743. <symbol draft="contributed">INR</symbol>
  3744. </currency>
  3745. <currency type="IQD">
  3746. <displayName>Iracký dinár</displayName>
  3747. </currency>
  3748. <currency type="IRR">
  3749. <displayName>Iránsky rial</displayName>
  3750. </currency>
  3751. <currency type="ISK">
  3752. <displayName>Islandská krona</displayName>
  3753. </currency>
  3754. <currency type="ITL">
  3755. <displayName>Talianská lira</displayName>
  3756. </currency>
  3757. <currency type="JMD">
  3758. <displayName>Jamajský dolár</displayName>
  3759. </currency>
  3760. <currency type="JOD">
  3761. <displayName>Jordánsky dinár</displayName>
  3762. </currency>
  3763. <currency type="JPY">
  3764. <displayName>Japonský jen</displayName>
  3765. <displayName count="one">japonský jen</displayName>
  3766. <displayName count="few">japonské jeny</displayName>
  3767. <displayName count="many">japonského jenu</displayName>
  3768. <displayName count="other">japonských jenov</displayName>
  3769. <symbol draft="contributed">JPY</symbol>
  3770. </currency>
  3771. <currency type="KES">
  3772. <displayName>Keňský šiling</displayName>
  3773. </currency>
  3774. <currency type="KGS">
  3775. <displayName>Kirgizský som</displayName>
  3776. <displayName count="one">kirgizský som</displayName>
  3777. <displayName count="few">kirgizské somy</displayName>
  3778. <displayName count="many">kirgizského somu</displayName>
  3779. <displayName count="other">kirgizských somov</displayName>
  3780. </currency>
  3781. <currency type="KHR">
  3782. <displayName>Kambodžský riel</displayName>
  3783. </currency>
  3784. <currency type="KMF">
  3785. <displayName>Komorský frank</displayName>
  3786. <displayName count="one">Comoro frank</displayName>
  3787. <displayName count="few">komorské franky</displayName>
  3788. <displayName count="many">komorského franku</displayName>
  3789. <displayName count="other">komorských frankov</displayName>
  3790. </currency>
  3791. <currency type="KPW">
  3792. <displayName>Severokórejský won</displayName>
  3793. </currency>
  3794. <currency type="KRW">
  3795. <displayName>Juhokórejský won</displayName>
  3796. <displayName count="one">juhokórejský won</displayName>
  3797. <displayName count="few">juhokórejské wony</displayName>
  3798. <displayName count="many">juhokórejského wonu</displayName>
  3799. <displayName count="other">juhokórejských wonov</displayName>
  3800. <symbol draft="contributed">KRW</symbol>
  3801. </currency>
  3802. <currency type="KWD">
  3803. <displayName>Kuvajtský dinár</displayName>
  3804. <displayName count="one">kuvajtský dinár</displayName>
  3805. <displayName count="few">kuvajtské dináre</displayName>
  3806. <displayName count="many">kuvajtského dinára</displayName>
  3807. <displayName count="other">kuvajtských dinárov</displayName>
  3808. </currency>
  3809. <currency type="KYD">
  3810. <displayName>Kajmanský dolár</displayName>
  3811. </currency>
  3812. <currency type="KZT">
  3813. <displayName>Kazašské tenge</displayName>
  3814. <displayName count="one">kazašské tenge</displayName>
  3815. <displayName count="few">kazašské tenge</displayName>
  3816. <displayName count="many">kazašského tenge</displayName>
  3817. <displayName count="other">kazašských tenge</displayName>
  3818. </currency>
  3819. <currency type="LAK">
  3820. <displayName>Laoský kip</displayName>
  3821. </currency>
  3822. <currency type="LBP">
  3823. <displayName>Libanonská libra</displayName>
  3824. </currency>
  3825. <currency type="LKR">
  3826. <displayName>Srílanská rupia</displayName>
  3827. <displayName count="one">srílanská rupia</displayName>
  3828. <displayName count="few">srílanské rupie</displayName>
  3829. <displayName count="many">srílanskej rupie</displayName>
  3830. <displayName count="other">srílanských rupií</displayName>
  3831. </currency>
  3832. <currency type="LRD">
  3833. <displayName>Libérský dolár</displayName>
  3834. </currency>
  3835. <currency type="LSL">
  3836. <displayName>Lesothský loti</displayName>
  3837. </currency>
  3838. <currency type="LTL">
  3839. <displayName>Litovský litas</displayName>
  3840. <displayName count="one">litovský litas</displayName>
  3841. <displayName count="few">litovské litasy</displayName>
  3842. <displayName count="many">litovského litasa</displayName>
  3843. <displayName count="other">litovských litasov</displayName>
  3844. </currency>
  3845. <currency type="LTT">
  3846. <displayName>Litevský talonas</displayName>
  3847. </currency>
  3848. <currency type="LUF">
  3849. <displayName>Luxemburský frank</displayName>
  3850. </currency>
  3851. <currency type="LVL">
  3852. <displayName>Lotyšský lat</displayName>
  3853. <displayName count="one">lotyšský lat</displayName>
  3854. <displayName count="few">lotyšské laty</displayName>
  3855. <displayName count="many">lotyšského latu</displayName>
  3856. <displayName count="other">lotyšských latov</displayName>
  3857. </currency>
  3858. <currency type="LVR">
  3859. <displayName>Lotyšský rubeľ</displayName>
  3860. </currency>
  3861. <currency type="LYD">
  3862. <displayName>Libyjský dinár</displayName>
  3863. </currency>
  3864. <currency type="MAD">
  3865. <displayName>Marocký dirham</displayName>
  3866. </currency>
  3867. <currency type="MAF">
  3868. <displayName>Marocký frank</displayName>
  3869. </currency>
  3870. <currency type="MDL">
  3871. <displayName>Moldavský leu</displayName>
  3872. </currency>
  3873. <currency type="MGA">
  3874. <displayName>Madagaskarský ariary</displayName>
  3875. </currency>
  3876. <currency type="MGF">
  3877. <displayName>Madagaskarský frank</displayName>
  3878. </currency>
  3879. <currency type="MKD">
  3880. <displayName>Macedónsky denár</displayName>
  3881. </currency>
  3882. <currency type="MLF">
  3883. <displayName>Malský frank</displayName>
  3884. </currency>
  3885. <currency type="MMK">
  3886. <displayName>Myanmarský kyat</displayName>
  3887. </currency>
  3888. <currency type="MNT">
  3889. <displayName>Mongolský tugrik</displayName>
  3890. </currency>
  3891. <currency type="MOP">
  3892. <displayName>Macajská pataca</displayName>
  3893. <displayName count="one">macajská pataca</displayName>
  3894. <displayName count="few">macajské patacy</displayName>
  3895. <displayName count="many">macajskej patacy</displayName>
  3896. <displayName count="other">macajských patác</displayName>
  3897. </currency>
  3898. <currency type="MRO">
  3899. <displayName>Mauritania Ouguiya</displayName>
  3900. <displayName count="one">mauritánska ukija</displayName>
  3901. <displayName count="few">mauritánske ukije</displayName>
  3902. <displayName count="many">mauritánskej ukije</displayName>
  3903. <displayName count="other">mauritánskych ukijí</displayName>
  3904. </currency>
  3905. <currency type="MTL">
  3906. <displayName>Maltská lira</displayName>
  3907. </currency>
  3908. <currency type="MTP">
  3909. <displayName>Maltská libra</displayName>
  3910. </currency>
  3911. <currency type="MUR">
  3912. <displayName>Maurícijská rupia</displayName>
  3913. <displayName count="one">maurícijská rupia</displayName>
  3914. <displayName count="few">maurícijské rupie</displayName>
  3915. <displayName count="many">maurícijskej rupie</displayName>
  3916. <displayName count="other">maurícijských rupií</displayName>
  3917. </currency>
  3918. <currency type="MVR">
  3919. <displayName>Maldivská rufiyaa</displayName>
  3920. </currency>
  3921. <currency type="MWK">
  3922. <displayName>Malawijská kwacha</displayName>
  3923. <displayName count="one">malawijská kwacha</displayName>
  3924. <displayName count="few">malawijské kwachy</displayName>
  3925. <displayName count="many">malawijskej kwachy</displayName>
  3926. <displayName count="other">malawijských kwách</displayName>
  3927. </currency>
  3928. <currency type="MXN">
  3929. <displayName>Mexické peso</displayName>
  3930. <displayName count="one">mexické peso</displayName>
  3931. <displayName count="few">mexické pesos</displayName>
  3932. <displayName count="many">mexického pesa</displayName>
  3933. <displayName count="other">mexických pesos</displayName>
  3934. <symbol draft="contributed">Mex$</symbol>
  3935. </currency>
  3936. <currency type="MXP">
  3937. <displayName>Mexické striborné peso (1861–1992)</displayName>
  3938. </currency>
  3939. <currency type="MXV">
  3940. <displayName>Mexické Unidad de Inversion (UDI)</displayName>
  3941. </currency>
  3942. <currency type="MYR">
  3943. <displayName>Malajský ringgit</displayName>
  3944. <displayName count="one">malajský ringgit</displayName>
  3945. <displayName count="few">malajské ringgity</displayName>
  3946. <displayName count="many">malajského ringgitu</displayName>
  3947. <displayName count="other">malajských ringgitov</displayName>
  3948. </currency>
  3949. <currency type="MZE">
  3950. <displayName>Mozabické escudo</displayName>
  3951. <displayName count="one">mozabické escudo</displayName>
  3952. <displayName count="few">mozabické escudá</displayName>
  3953. <displayName count="many">mozabického escuda</displayName>
  3954. <displayName count="other">mozabických escúd</displayName>
  3955. </currency>
  3956. <currency type="MZM">
  3957. <displayName>Mozambický metical (1980–2006)</displayName>
  3958. <displayName count="one">mozambický metical (1980–2006)</displayName>
  3959. <displayName count="few">mozambické meticaly (1980–2006)</displayName>
  3960. <displayName count="many">mozambického meticalu (1980–2006)</displayName>
  3961. <displayName count="other">mozambických meticalov (1980–2006)</displayName>
  3962. </currency>
  3963. <currency type="MZN">
  3964. <displayName>Mozambický metical</displayName>
  3965. <displayName count="one">mozambický metical</displayName>
  3966. <displayName count="few">mozambické meticaly</displayName>
  3967. <displayName count="many">mozambického meticalu</displayName>
  3968. <displayName count="other">mozambických meticalov</displayName>
  3969. </currency>
  3970. <currency type="NAD">
  3971. <displayName>Namibský dolár</displayName>
  3972. <displayName count="one">namíbijský dolár</displayName>
  3973. <displayName count="few">namíbijské doláre</displayName>
  3974. <displayName count="many">namíbijského dolára</displayName>
  3975. <displayName count="other">namíbijských dolárov</displayName>
  3976. </currency>
  3977. <currency type="NGN">
  3978. <displayName>Nigerská naira</displayName>
  3979. </currency>
  3980. <currency type="NIC">
  3981. <displayName>Nikaragujská Cordoba (1988–1991)</displayName>
  3982. <displayName count="one">nikaragujská córdoba (1988–1991)</displayName>
  3983. <displayName count="few">nikaragujské córdoby (1988–1991)</displayName>
  3984. <displayName count="many">nikaragujskej córdoby (1988–1991)</displayName>
  3985. <displayName count="other">nikaragujských córdob (1988–1991)</displayName>
  3986. </currency>
  3987. <currency type="NIO">
  3988. <displayName>Nikaragujská Cordoba</displayName>
  3989. <displayName count="one">nikaragujská córdoba</displayName>
  3990. <displayName count="few">nikaragujské córdoby</displayName>
  3991. <displayName count="many">nikaragujskej córdoby</displayName>
  3992. <displayName count="other">nikaragujských córdob</displayName>
  3993. </currency>
  3994. <currency type="NLG">
  3995. <displayName>Nizozemský guilder</displayName>
  3996. </currency>
  3997. <currency type="NOK">
  3998. <displayName>Nórska koruna</displayName>
  3999. <displayName count="one">nórska koruna</displayName>
  4000. <displayName count="few">nórske koruny</displayName>
  4001. <displayName count="many">nórskej koruny</displayName>
  4002. <displayName count="other">nórskych korún</displayName>
  4003. </currency>
  4004. <currency type="NPR">
  4005. <displayName>Nepálska rupia</displayName>
  4006. </currency>
  4007. <currency type="NZD">
  4008. <displayName>Novozélandský dolár</displayName>
  4009. <symbol draft="contributed">NZ$</symbol>
  4010. </currency>
  4011. <currency type="OMR">
  4012. <displayName>Ománský rial</displayName>
  4013. </currency>
  4014. <currency type="PAB">
  4015. <displayName>Panamská balboa</displayName>
  4016. </currency>
  4017. <currency type="PEI">
  4018. <displayName>Peruvský inti</displayName>
  4019. </currency>
  4020. <currency type="PEN">
  4021. <displayName>Peruvský sol Nuevo</displayName>
  4022. <displayName count="one">peruánsky nový sol</displayName>
  4023. <displayName count="few">peruánske nové soly</displayName>
  4024. <displayName count="many">peruánskeho nového sola</displayName>
  4025. <displayName count="other">peruánskych nových solov</displayName>
  4026. </currency>
  4027. <currency type="PES">
  4028. <displayName>Peruvský sol</displayName>
  4029. </currency>
  4030. <currency type="PGK">
  4031. <displayName>Papuánska kina</displayName>
  4032. <displayName count="one">papuánska kina</displayName>
  4033. <displayName count="few">papuánske kiny</displayName>
  4034. <displayName count="many">papuánskej kiny</displayName>
  4035. <displayName count="other">papuánskych kín</displayName>
  4036. </currency>
  4037. <currency type="PHP">
  4038. <displayName>Filipínske peso</displayName>
  4039. </currency>
  4040. <currency type="PKR">
  4041. <displayName>Pakistanská rupia</displayName>
  4042. </currency>
  4043. <currency type="PLN">
  4044. <displayName>Poľský zlotý</displayName>
  4045. <displayName count="one">poľský zlotý</displayName>
  4046. <displayName count="few">poľské zloté</displayName>
  4047. <displayName count="many">poľského zlotého</displayName>
  4048. <displayName count="other">poľských zlotých</displayName>
  4049. <symbol draft="contributed">zl</symbol>
  4050. </currency>
  4051. <currency type="PLZ">
  4052. <displayName>Polský zloty (1950–1995)</displayName>
  4053. <displayName count="one">poľský zlotý (1950–1995)</displayName>
  4054. <displayName count="few">poľské zloté (1950–1995)</displayName>
  4055. <displayName count="many">poľského zlotého (1950–1995)</displayName>
  4056. <displayName count="other">poľských zlotých (1950–1995)</displayName>
  4057. </currency>
  4058. <currency type="PTE">
  4059. <displayName>Portugalské eskudo</displayName>
  4060. </currency>
  4061. <currency type="PYG">
  4062. <displayName>Paraguayské guarani</displayName>
  4063. <displayName count="one">paraguajské guaraní</displayName>
  4064. <displayName count="few">paraguayské guarani</displayName>
  4065. <displayName count="many">paraguayského guarani</displayName>
  4066. <displayName count="other">paraguayských guarani</displayName>
  4067. </currency>
  4068. <currency type="QAR">
  4069. <displayName>Katarský rial</displayName>
  4070. <displayName count="one">katarský rial</displayName>
  4071. <displayName count="few">katarské rialy</displayName>
  4072. <displayName count="many">katarského rialu</displayName>
  4073. <displayName count="other">katarských rialov</displayName>
  4074. </currency>
  4075. <currency type="ROL">
  4076. <displayName>Rumunský leu (1952–2006)</displayName>
  4077. <displayName count="one">rumunský leu (1952–2006)</displayName>
  4078. <displayName count="few">rumunské leu (1952–2006)</displayName>
  4079. <displayName count="many">rumunského leu (1952–2006)</displayName>
  4080. <displayName count="other">rumunských leu (1952–2006)</displayName>
  4081. </currency>
  4082. <currency type="RON">
  4083. <displayName>Rumunský leu</displayName>
  4084. <displayName count="one">rumunský leu</displayName>
  4085. <displayName count="few">rumunské leu</displayName>
  4086. <displayName count="many">rumunského leu</displayName>
  4087. <displayName count="other">rumunských leu</displayName>
  4088. </currency>
  4089. <currency type="RSD">
  4090. <displayName>Srbský dinár</displayName>
  4091. <displayName count="one">srbský dinár</displayName>
  4092. <displayName count="few">srbské dináre</displayName>
  4093. <displayName count="many">srbského dinára</displayName>
  4094. <displayName count="other">srbských dinárov</displayName>
  4095. </currency>
  4096. <currency type="RUB">
  4097. <displayName>Ruský rubeľ</displayName>
  4098. <displayName count="one">ruský rubeľ</displayName>
  4099. <displayName count="few">ruské ruble</displayName>
  4100. <displayName count="many">ruského rubľa</displayName>
  4101. <displayName count="other">ruských rubľov</displayName>
  4102. </currency>
  4103. <currency type="RUR">
  4104. <displayName>Ruský rubeľ (1991–1998)</displayName>
  4105. </currency>
  4106. <currency type="RWF">
  4107. <displayName>Rwandský frank</displayName>
  4108. </currency>
  4109. <currency type="SAR">
  4110. <displayName>Saudskoarabský rial</displayName>
  4111. <displayName count="one">saudskoarabský rial</displayName>
  4112. <displayName count="few">saudskoarabské rialy</displayName>
  4113. <displayName count="many">saudskoarabského rialu</displayName>
  4114. <displayName count="other">saudskoarabských rialov</displayName>
  4115. </currency>
  4116. <currency type="SBD">
  4117. <displayName>Šalamúnsky dolár</displayName>
  4118. <displayName count="one">šalamúnsky dolár</displayName>
  4119. <displayName count="few">šalamúnske doláre</displayName>
  4120. <displayName count="many">šalamúnskeho dolára</displayName>
  4121. <displayName count="other">šalamúnskych dolárov</displayName>
  4122. </currency>
  4123. <currency type="SCR">
  4124. <displayName>Seychelská rupia</displayName>
  4125. <displayName count="one">seychelská rupia</displayName>
  4126. <displayName count="few">seychelské rupie</displayName>
  4127. <displayName count="many">seychelskej rupie</displayName>
  4128. <displayName count="other">seychelských rupií</displayName>
  4129. </currency>
  4130. <currency type="SDD">
  4131. <displayName>Sudánsky dinár</displayName>
  4132. </currency>
  4133. <currency type="SDG">
  4134. <displayName>Sudánska libra</displayName>
  4135. <displayName count="one">sudánska libra</displayName>
  4136. <displayName count="few">sudánske libry</displayName>
  4137. <displayName count="many">sudánskej libry</displayName>
  4138. <displayName count="other">sudánskych libier</displayName>
  4139. </currency>
  4140. <currency type="SDP">
  4141. <displayName>Sudánska libra (1957–1998)</displayName>
  4142. <displayName count="one">sudánska libra (1957–1998)</displayName>
  4143. <displayName count="few">sudánske libry (1957–1998)</displayName>
  4144. <displayName count="many">sudánskej libry (1957–1998)</displayName>
  4145. <displayName count="other">sudánskych libier (1957–1998)</displayName>
  4146. </currency>
  4147. <currency type="SEK">
  4148. <displayName>Švédska koruna</displayName>
  4149. <displayName count="one">švédska koruna</displayName>
  4150. <displayName count="few">švédske koruny</displayName>
  4151. <displayName count="many">švédskej koruny</displayName>
  4152. <displayName count="other">švédskych korún</displayName>
  4153. </currency>
  4154. <currency type="SGD">
  4155. <displayName>Singapúrsky dolár</displayName>
  4156. </currency>
  4157. <currency type="SHP">
  4158. <displayName>Svätohelenská libra</displayName>
  4159. <displayName count="one">svätohelenská libra</displayName>
  4160. <displayName count="few">svätohelenské libry</displayName>
  4161. <displayName count="many">svätohelenskej libry</displayName>
  4162. <displayName count="other">svätohelenských libier</displayName>
  4163. </currency>
  4164. <currency type="SIT">
  4165. <displayName>Slovinský Tolar</displayName>
  4166. </currency>
  4167. <currency type="SKK">
  4168. <displayName>Slovenská koruna</displayName>
  4169. </currency>
  4170. <currency type="SLL">
  4171. <displayName>Sierraleonský leone</displayName>
  4172. <displayName count="one">sierraleonský leone</displayName>
  4173. <displayName count="few">sierraleonské leone</displayName>
  4174. <displayName count="many">sierraleonského leone</displayName>
  4175. <displayName count="other">sierraleonských leone</displayName>
  4176. </currency>
  4177. <currency type="SOS">
  4178. <displayName>Somálsky šiling</displayName>
  4179. </currency>
  4180. <currency type="SRD">
  4181. <displayName>Surinamský dolár</displayName>
  4182. <displayName count="one">surinamský dolár</displayName>
  4183. <displayName count="few">surinamské doláre</displayName>
  4184. <displayName count="many">surinamského dolára</displayName>
  4185. <displayName count="other">surinamských dolárov</displayName>
  4186. </currency>
  4187. <currency type="SRG">
  4188. <displayName>Surinamský guilder</displayName>
  4189. </currency>
  4190. <currency type="SSP">
  4191. <displayName>Juhosudánska libra</displayName>
  4192. <displayName count="one">juhosudánska libra</displayName>
  4193. <displayName count="few">juhosudánske libry</displayName>
  4194. <displayName count="many">juhosudánskej libry</displayName>
  4195. <displayName count="other">juhosudánskych libier</displayName>
  4196. </currency>
  4197. <currency type="STD">
  4198. <displayName>Sao Tome a Principe dobra</displayName>
  4199. <displayName count="one">svätotomášska dobra</displayName>
  4200. <displayName count="few">svätotomášske dobry</displayName>
  4201. <displayName count="many">svätotomášskej dobry</displayName>
  4202. <displayName count="other">svätotomášskych dobrí</displayName>
  4203. </currency>
  4204. <currency type="SUR">
  4205. <displayName>Sovietsky rubeľ</displayName>
  4206. </currency>
  4207. <currency type="SVC">
  4208. <displayName>Salvádorský colón</displayName>
  4209. <displayName count="one">salvádorský colón</displayName>
  4210. <displayName count="few">salvádorské colóny</displayName>
  4211. <displayName count="many">salvádorského colóna</displayName>
  4212. <displayName count="other">salvádorských colónov</displayName>
  4213. </currency>
  4214. <currency type="SYP">
  4215. <displayName>Syrská libra</displayName>
  4216. </currency>
  4217. <currency type="SZL">
  4218. <displayName>Svazijské lilangeni</displayName>
  4219. <displayName count="one">svazijské lilangeni</displayName>
  4220. <displayName count="few">svazijské lilangeni</displayName>
  4221. <displayName count="many">svazijského lilangeni</displayName>
  4222. <displayName count="other">svazijských lilangeni</displayName>
  4223. </currency>
  4224. <currency type="THB">
  4225. <displayName>Thajský baht</displayName>
  4226. <displayName count="one">thajský baht</displayName>
  4227. <displayName count="few">thajské bahty</displayName>
  4228. <displayName count="many">thajského bahtu</displayName>
  4229. <displayName count="other">thajských bahtov</displayName>
  4230. <symbol draft="contributed">THB</symbol>
  4231. </currency>
  4232. <currency type="TJR">
  4233. <displayName>Tadžický rubeľ</displayName>
  4234. </currency>
  4235. <currency type="TJS">
  4236. <displayName>Tadžické somoni</displayName>
  4237. <displayName count="one">tadžické somoni</displayName>
  4238. <displayName count="few">tadžické somoni</displayName>
  4239. <displayName count="many">tadžického somoni</displayName>
  4240. <displayName count="other">tadžických somoni</displayName>
  4241. </currency>
  4242. <currency type="TMM">
  4243. <displayName>Turkménsky manat (1993–2009)</displayName>
  4244. <displayName count="one">turkménsky manat (1993–2009)</displayName>
  4245. <displayName count="few">turkménske manaty (1993–2009)</displayName>
  4246. <displayName count="many">turkménskeho manatu (1993–2009)</displayName>
  4247. <displayName count="other">turkménskych manatov (1993–2009)</displayName>
  4248. </currency>
  4249. <currency type="TMT">
  4250. <displayName>Turkménsky manat</displayName>
  4251. <displayName count="one">turkménsky manat</displayName>
  4252. <displayName count="few">turkménske manaty</displayName>
  4253. <displayName count="many">turkménskeho manatu</displayName>
  4254. <displayName count="other">turkménskych manatov</displayName>
  4255. </currency>
  4256. <currency type="TND">
  4257. <displayName>Tuniský dinár</displayName>
  4258. </currency>
  4259. <currency type="TOP">
  4260. <displayName>Tonga Paʻanga</displayName>
  4261. <displayName count="one">tongská pa'anga</displayName>
  4262. <displayName count="few">tongské pa'anga</displayName>
  4263. <displayName count="many">tongského pa'anga</displayName>
  4264. <displayName count="other">tongských pa'anga</displayName>
  4265. </currency>
  4266. <currency type="TPE">
  4267. <displayName>Timorské eskudo</displayName>
  4268. </currency>
  4269. <currency type="TRL">
  4270. <displayName>Turecká lira (1922–2005)</displayName>
  4271. <displayName count="one">turecká líra (1922–2005)</displayName>
  4272. <displayName count="few">turecké líry (1922–2005)</displayName>
  4273. <displayName count="many">tureckej líry (1922–2005)</displayName>
  4274. <displayName count="other">tureckých lír (1922–2005)</displayName>
  4275. </currency>
  4276. <currency type="TRY">
  4277. <displayName>Turecká líra</displayName>
  4278. <displayName count="one">turecká líra</displayName>
  4279. <displayName count="few">turecké líry</displayName>
  4280. <displayName count="many">tureckej líry</displayName>
  4281. <displayName count="other">tureckých lír</displayName>
  4282. </currency>
  4283. <currency type="TTD">
  4284. <displayName>Trinidadsko-tobažský dolár</displayName>
  4285. <displayName count="one">trinidadsko-tobažský dolár</displayName>
  4286. <displayName count="few">trinidadsko-tobažské doláre</displayName>
  4287. <displayName count="many">trinidadsko-tobažského dolára</displayName>
  4288. <displayName count="other">trinidadsko-tobažských dolárov</displayName>
  4289. </currency>
  4290. <currency type="TWD">
  4291. <displayName>Nový taiwanský dolár</displayName>
  4292. <displayName count="one">nový taiwanský dolár</displayName>
  4293. <displayName count="few">nové taiwanské doláre</displayName>
  4294. <displayName count="many">nového taiwanského dolára</displayName>
  4295. <displayName count="other">nových taiwanských dolárov</displayName>
  4296. <symbol>TWD</symbol>
  4297. </currency>
  4298. <currency type="TZS">
  4299. <displayName>Tanzanský šiling</displayName>
  4300. </currency>
  4301. <currency type="UAH">
  4302. <displayName>Ukrainská hrivna</displayName>
  4303. <displayName count="one">ukrajinská hrivna</displayName>
  4304. <displayName count="few">ukrajinské hrivny</displayName>
  4305. <displayName count="many">ukrajinskej hrivny</displayName>
  4306. <displayName count="other">ukrajinských hrivien</displayName>
  4307. </currency>
  4308. <currency type="UAK">
  4309. <displayName>Ukrainský karbovanetz</displayName>
  4310. </currency>
  4311. <currency type="UGS">
  4312. <displayName>Ugandan šiling (1966–1987)</displayName>
  4313. </currency>
  4314. <currency type="UGX">
  4315. <displayName>Ugandský šiling</displayName>
  4316. </currency>
  4317. <currency type="USD">
  4318. <displayName>Americký dolár</displayName>
  4319. <displayName count="one">americký dolár</displayName>
  4320. <displayName count="few">americké doláre</displayName>
  4321. <displayName count="many">amerického dolára</displayName>
  4322. <displayName count="other">amerických dolárov</displayName>
  4323. <symbol draft="contributed">USD</symbol>
  4324. </currency>
  4325. <currency type="USN">
  4326. <displayName>US dolár (Next day)</displayName>
  4327. </currency>
  4328. <currency type="USS">
  4329. <displayName>US dolár (Same day)</displayName>
  4330. </currency>
  4331. <currency type="UYP">
  4332. <displayName>Uruguajské peso (1975–1993)</displayName>
  4333. </currency>
  4334. <currency type="UYU">
  4335. <displayName>Uruguajské peso Uruguayo</displayName>
  4336. <displayName count="one">uruguajské peso</displayName>
  4337. <displayName count="few">uruguajské pesos</displayName>
  4338. <displayName count="many">uruguajských pesos</displayName>
  4339. <displayName count="other">uruguajských pesos</displayName>
  4340. </currency>
  4341. <currency type="UZS">
  4342. <displayName>Uzbecký sum</displayName>
  4343. <displayName count="one">uzbecký sum</displayName>
  4344. <displayName count="few">uzbecké sumy</displayName>
  4345. <displayName count="many">uzbeckého sumu</displayName>
  4346. <displayName count="other">uzbeckých sumov</displayName>
  4347. </currency>
  4348. <currency type="VEB">
  4349. <displayName>Venezuelský bolívar (1871–2008)</displayName>
  4350. </currency>
  4351. <currency type="VEF">
  4352. <displayName>Venezuelský bolívar</displayName>
  4353. </currency>
  4354. <currency type="VND">
  4355. <displayName>Vietnamský dong</displayName>
  4356. <symbol draft="contributed">₫</symbol>
  4357. </currency>
  4358. <currency type="VUV">
  4359. <displayName>Vanuatské vatu</displayName>
  4360. <displayName count="one">vanuatské vatu</displayName>
  4361. <displayName count="few">vanuatské vatu</displayName>
  4362. <displayName count="many">vanuatského vatu</displayName>
  4363. <displayName count="other">vanuatských vatu</displayName>
  4364. </currency>
  4365. <currency type="WST">
  4366. <displayName>Samojská tala</displayName>
  4367. <displayName count="one">samojská tala</displayName>
  4368. <displayName count="few">samojské taly</displayName>
  4369. <displayName count="many">samojskej taly</displayName>
  4370. <displayName count="other">samojských tál</displayName>
  4371. </currency>
  4372. <currency type="XAF">
  4373. <displayName>CFA frank BEAC</displayName>
  4374. <symbol draft="contributed">FCFA</symbol>
  4375. </currency>
  4376. <currency type="XAU">
  4377. <displayName>Zlato</displayName>
  4378. </currency>
  4379. <currency type="XCD">
  4380. <displayName>Východokaribský dolár</displayName>
  4381. <displayName count="one">východokaribský dolár</displayName>
  4382. <displayName count="few">východokaribské doláre</displayName>
  4383. <displayName count="many">východokaribského dolára</displayName>
  4384. <displayName count="other">východokaribských dolárov</displayName>
  4385. <symbol>EC$</symbol>
  4386. </currency>
  4387. <currency type="XDR">
  4388. <displayName>Špeciálne práva čerpania</displayName>
  4389. </currency>
  4390. <currency type="XFO">
  4391. <displayName>Francúzsky zlatý frank</displayName>
  4392. </currency>
  4393. <currency type="XFU">
  4394. <displayName>Francúzsky UIC-frank</displayName>
  4395. </currency>
  4396. <currency type="XOF">
  4397. <displayName>CFA frank BCEAO</displayName>
  4398. <symbol draft="contributed">CFA</symbol>
  4399. </currency>
  4400. <currency type="XPF">
  4401. <displayName>CFP frank</displayName>
  4402. <symbol draft="contributed">CFPF</symbol>
  4403. </currency>
  4404. <currency type="XXX">
  4405. <displayName>Neznáma mena</displayName>
  4406. <displayName count="one">Neznáma mena</displayName>
  4407. <displayName count="few">Neznáma mena</displayName>
  4408. <displayName count="many">Neznáma mena</displayName>
  4409. <displayName count="other">Neznáma mena</displayName>
  4410. </currency>
  4411. <currency type="YDD">
  4412. <displayName>Jemenský dinár</displayName>
  4413. </currency>
  4414. <currency type="YER">
  4415. <displayName>Jemenský rial</displayName>
  4416. </currency>
  4417. <currency type="YUD">
  4418. <displayName>Juhoslávsky dinár [YUD]</displayName>
  4419. </currency>
  4420. <currency type="YUM">
  4421. <displayName>Juhoslávsky Noviy dinár</displayName>
  4422. </currency>
  4423. <currency type="YUN">
  4424. <displayName>Juhoslávsky dinár</displayName>
  4425. </currency>
  4426. <currency type="ZAL">
  4427. <displayName>Juhoafrický rand (financial)</displayName>
  4428. </currency>
  4429. <currency type="ZAR">
  4430. <displayName>Juhoafrický rand</displayName>
  4431. <displayName count="one">juhoafrický rand</displayName>
  4432. <displayName count="few">juhoafrické randy</displayName>
  4433. <displayName count="many">juhoafrického randu</displayName>
  4434. <displayName count="other">juhoafrických randov</displayName>
  4435. </currency>
  4436. <currency type="ZMK">
  4437. <displayName>Zambijská kwacha (1968–2012)</displayName>
  4438. <displayName count="one">zambijská kwacha (1968–2012)</displayName>
  4439. <displayName count="few">zambijské kwachy (1968–2012)</displayName>
  4440. <displayName count="many">zambijskej kwachy (1968–2012)</displayName>
  4441. <displayName count="other">zambijských kwách (1968–2012)</displayName>
  4442. </currency>
  4443. <currency type="ZMW">
  4444. <displayName>Zambijská kwacha</displayName>
  4445. <displayName count="one">zambijská kwacha</displayName>
  4446. <displayName count="few">zambijské kwachy</displayName>
  4447. <displayName count="many">zambijskej kwachy</displayName>
  4448. <displayName count="other">zambijských kwách</displayName>
  4449. </currency>
  4450. <currency type="ZRN">
  4451. <displayName>Zairský nový zaire</displayName>
  4452. </currency>
  4453. <currency type="ZRZ">
  4454. <displayName>Zairský Zaire</displayName>
  4455. </currency>
  4456. <currency type="ZWD">
  4457. <displayName>Zimbabwiansky dolár (1980–2008)</displayName>
  4458. <displayName count="one">zimbabwiansky dolár (1980–2008)</displayName>
  4459. <displayName count="few">zimbabwianske doláre (1980–2008)</displayName>
  4460. <displayName count="many">zimbabwianskeho dolára (1980–2008)</displayName>
  4461. <displayName count="other">zimbabwianskych dolárov (1980–2008)</displayName>
  4462. </currency>
  4463. <currency type="ZWL">
  4464. <displayName>Zimbabwiansky dolár (2009)</displayName>
  4465. <displayName count="one">zimbabwiansky dolár (2009)</displayName>
  4466. <displayName count="few">zimbabwianske doláre (2009)</displayName>
  4467. <displayName count="many">zimbabwianskeho dolára (2009)</displayName>
  4468. <displayName count="other">zimbabwianskych dolárov (2009)</displayName>
  4469. </currency>
  4470. <currency type="ZWR">
  4471. <displayName>Zimbabwiansky dolár (2008)</displayName>
  4472. <displayName count="one">zimbabwiansky dolár (2008)</displayName>
  4473. <displayName count="few">zimbabwianske doláre (2008)</displayName>
  4474. <displayName count="many">zimbabwianskeho dolára (2008)</displayName>
  4475. <displayName count="other">zimbabwianskych dolárov (2008)</displayName>
  4476. </currency>
  4477. </currencies>
  4478. <miscPatterns numberSystem="latn">
  4479. <pattern type="atLeast" draft="contributed">{0}+</pattern>
  4480. <pattern type="range" draft="contributed">{0}–{1}</pattern>
  4481. </miscPatterns>
  4482. </numbers>
  4483. <units>
  4484. <unitLength type="long">
  4485. <compoundUnit type="per">
  4486. <compoundUnitPattern draft="contributed">{0} za {1}</compoundUnitPattern>
  4487. </compoundUnit>
  4488. <unit type="acceleration-g-force">
  4489. <unitPattern count="one">{0} jednotka preťaženia</unitPattern>
  4490. <unitPattern count="few">{0} jednotky preťaženia</unitPattern>
  4491. <unitPattern count="many">{0} jednotky preťaženia</unitPattern>
  4492. <unitPattern count="other">{0} jednotiek preťaženia</unitPattern>
  4493. </unit>
  4494. <unit type="angle-arc-minute">
  4495. <unitPattern count="one">{0} minúta</unitPattern>
  4496. <unitPattern count="few">{0} minúty</unitPattern>
  4497. <unitPattern count="many">{0} minúty</unitPattern>
  4498. <unitPattern count="other">{0} minút</unitPattern>
  4499. </unit>
  4500. <unit type="angle-arc-second">
  4501. <unitPattern count="one">{0} sekunda</unitPattern>
  4502. <unitPattern count="few">{0} sekundy</unitPattern>
  4503. <unitPattern count="many">{0} sekundy</unitPattern>
  4504. <unitPattern count="other">{0} sekúnd</unitPattern>
  4505. </unit>
  4506. <unit type="angle-degree">
  4507. <unitPattern count="one">{0} stupeň</unitPattern>
  4508. <unitPattern count="few">{0} stupne</unitPattern>
  4509. <unitPattern count="many">{0} stupňa</unitPattern>
  4510. <unitPattern count="other">{0} stupňov</unitPattern>
  4511. </unit>
  4512. <unit type="area-acre">
  4513. <unitPattern count="one">{0} aker</unitPattern>
  4514. <unitPattern count="few">{0} akre</unitPattern>
  4515. <unitPattern count="many">{0} akra</unitPattern>
  4516. <unitPattern count="other">{0} akrov</unitPattern>
  4517. </unit>
  4518. <unit type="area-hectare">
  4519. <unitPattern count="one">{0} hektár</unitPattern>
  4520. <unitPattern count="few">{0} hektáre</unitPattern>
  4521. <unitPattern count="many">{0} hektára</unitPattern>
  4522. <unitPattern count="other">{0} hektárov</unitPattern>
  4523. </unit>
  4524. <unit type="area-square-foot">
  4525. <unitPattern count="one">{0} štvorcová stopa</unitPattern>
  4526. <unitPattern count="few">{0} štvorcové stopy</unitPattern>
  4527. <unitPattern count="many">{0} štvorcovej stopy</unitPattern>
  4528. <unitPattern count="other">{0} štvorcových stôp</unitPattern>
  4529. </unit>
  4530. <unit type="area-square-kilometer">
  4531. <unitPattern count="one">{0} kilometer štvorcový</unitPattern>
  4532. <unitPattern count="few">{0} kilometre štvorcové</unitPattern>
  4533. <unitPattern count="many">{0} kilometra štvorcového</unitPattern>
  4534. <unitPattern count="other">{0} kilometrov štvorcových</unitPattern>
  4535. </unit>
  4536. <unit type="area-square-meter">
  4537. <unitPattern count="one">{0} meter štvorcový</unitPattern>
  4538. <unitPattern count="few">{0} metre štvorcové</unitPattern>
  4539. <unitPattern count="many">{0} metra štvorcového</unitPattern>
  4540. <unitPattern count="other">{0} metrov štvorcových</unitPattern>
  4541. </unit>
  4542. <unit type="area-square-mile">
  4543. <unitPattern count="one">{0} míľa štvorcová</unitPattern>
  4544. <unitPattern count="few">{0} míle štvorcové</unitPattern>
  4545. <unitPattern count="many">{0} míle štvorcovej</unitPattern>
  4546. <unitPattern count="other">{0} míľ štvorcových</unitPattern>
  4547. </unit>
  4548. <unit type="duration-day">
  4549. <unitPattern count="one">{0} deň</unitPattern>
  4550. <unitPattern count="few">{0} dni</unitPattern>
  4551. <unitPattern count="many">{0} dňa</unitPattern>
  4552. <unitPattern count="other">{0} dní</unitPattern>
  4553. </unit>
  4554. <unit type="duration-hour">
  4555. <unitPattern count="one">{0} hodina</unitPattern>
  4556. <unitPattern count="few">{0} hodiny</unitPattern>
  4557. <unitPattern count="many">{0} hodiny</unitPattern>
  4558. <unitPattern count="other">{0} hodín</unitPattern>
  4559. </unit>
  4560. <unit type="duration-millisecond">
  4561. <unitPattern count="one">{0} milisekunda</unitPattern>
  4562. <unitPattern count="few">{0} milisekundy</unitPattern>
  4563. <unitPattern count="many">{0} milisekundy</unitPattern>
  4564. <unitPattern count="other">{0} milisekúnd</unitPattern>
  4565. </unit>
  4566. <unit type="duration-minute">
  4567. <unitPattern count="one">{0} minúta</unitPattern>
  4568. <unitPattern count="few">{0} minúty</unitPattern>
  4569. <unitPattern count="many">{0} minúty</unitPattern>
  4570. <unitPattern count="other">{0} minút</unitPattern>
  4571. </unit>
  4572. <unit type="duration-month">
  4573. <unitPattern count="one">{0} mesiac</unitPattern>
  4574. <unitPattern count="few">{0} mesiace</unitPattern>
  4575. <unitPattern count="many">{0} mesiaca</unitPattern>
  4576. <unitPattern count="other">{0} mesiacov</unitPattern>
  4577. </unit>
  4578. <unit type="duration-second">
  4579. <unitPattern count="one">{0} sekunda</unitPattern>
  4580. <unitPattern count="few">{0} sekundy</unitPattern>
  4581. <unitPattern count="many">{0} sekundy</unitPattern>
  4582. <unitPattern count="other">{0} sekúnd</unitPattern>
  4583. </unit>
  4584. <unit type="duration-week">
  4585. <unitPattern count="one">{0} týždeň</unitPattern>
  4586. <unitPattern count="few">{0} týždne</unitPattern>
  4587. <unitPattern count="many">{0} týždňa</unitPattern>
  4588. <unitPattern count="other">{0} týždňov</unitPattern>
  4589. </unit>
  4590. <unit type="duration-year">
  4591. <unitPattern count="one">{0} rok</unitPattern>
  4592. <unitPattern count="few">{0} roky</unitPattern>
  4593. <unitPattern count="many">{0} roka</unitPattern>
  4594. <unitPattern count="other">{0} rokov</unitPattern>
  4595. </unit>
  4596. <unit type="length-centimeter">
  4597. <unitPattern count="one">{0} centimeter</unitPattern>
  4598. <unitPattern count="few">{0} centimetre</unitPattern>
  4599. <unitPattern count="many">{0} centimetra</unitPattern>
  4600. <unitPattern count="other">{0} centimetrov</unitPattern>
  4601. </unit>
  4602. <unit type="length-foot">
  4603. <unitPattern count="one">{0} stopa</unitPattern>
  4604. <unitPattern count="few">{0} stopy</unitPattern>
  4605. <unitPattern count="many">{0} stôp</unitPattern>
  4606. <unitPattern count="other">{0} stôp</unitPattern>
  4607. </unit>
  4608. <unit type="length-inch">
  4609. <unitPattern count="one">{0} palec</unitPattern>
  4610. <unitPattern count="few">{0} palce</unitPattern>
  4611. <unitPattern count="many">{0} palca</unitPattern>
  4612. <unitPattern count="other">{0} palcov</unitPattern>
  4613. </unit>
  4614. <unit type="length-kilometer">
  4615. <unitPattern count="one">{0} kilometer</unitPattern>
  4616. <unitPattern count="few">{0} kilometre</unitPattern>
  4617. <unitPattern count="many">{0} kilometra</unitPattern>
  4618. <unitPattern count="other">{0} kilometrov</unitPattern>
  4619. </unit>
  4620. <unit type="length-light-year">
  4621. <unitPattern count="one">{0} svetelný rok</unitPattern>
  4622. <unitPattern count="few">{0} svetelné roky</unitPattern>
  4623. <unitPattern count="many">{0} svetelného roku</unitPattern>
  4624. <unitPattern count="other">{0} svetelných rokov</unitPattern>
  4625. </unit>
  4626. <unit type="length-meter">
  4627. <unitPattern count="one">{0} meter</unitPattern>
  4628. <unitPattern count="few">{0} metre</unitPattern>
  4629. <unitPattern count="many">{0} metra</unitPattern>
  4630. <unitPattern count="other">{0} metrov</unitPattern>
  4631. </unit>
  4632. <unit type="length-mile">
  4633. <unitPattern count="one">{0} míľa</unitPattern>
  4634. <unitPattern count="few">{0} míle</unitPattern>
  4635. <unitPattern count="many">{0} míle</unitPattern>
  4636. <unitPattern count="other">{0} míľ</unitPattern>
  4637. </unit>
  4638. <unit type="length-millimeter">
  4639. <unitPattern count="one">{0} milimeter</unitPattern>
  4640. <unitPattern count="few">{0} milimetre</unitPattern>
  4641. <unitPattern count="many">{0} milimetra</unitPattern>
  4642. <unitPattern count="other">{0} milimetrov</unitPattern>
  4643. </unit>
  4644. <unit type="length-picometer">
  4645. <unitPattern count="one">{0} pikometer</unitPattern>
  4646. <unitPattern count="few">{0} pikometre</unitPattern>
  4647. <unitPattern count="many">{0} pikometra</unitPattern>
  4648. <unitPattern count="other">{0} pikometrov</unitPattern>
  4649. </unit>
  4650. <unit type="length-yard">
  4651. <unitPattern count="one">{0} yard</unitPattern>
  4652. <unitPattern count="few">{0} yardy</unitPattern>
  4653. <unitPattern count="many">{0} yardu</unitPattern>
  4654. <unitPattern count="other">{0} yardov</unitPattern>
  4655. </unit>
  4656. <unit type="mass-gram">
  4657. <unitPattern count="one">{0} gram</unitPattern>
  4658. <unitPattern count="few">{0} gramy</unitPattern>
  4659. <unitPattern count="many">{0} gramu</unitPattern>
  4660. <unitPattern count="other">{0} gramov</unitPattern>
  4661. </unit>
  4662. <unit type="mass-kilogram">
  4663. <unitPattern count="one">{0} kilogram</unitPattern>
  4664. <unitPattern count="few">{0} kilogramy</unitPattern>
  4665. <unitPattern count="many">{0} kilogramu</unitPattern>
  4666. <unitPattern count="other">{0} kilogramov</unitPattern>
  4667. </unit>
  4668. <unit type="mass-ounce">
  4669. <unitPattern count="one">{0} unca</unitPattern>
  4670. <unitPattern count="few">{0} unce</unitPattern>
  4671. <unitPattern count="many">{0} unce</unitPattern>
  4672. <unitPattern count="other">{0} uncí</unitPattern>
  4673. </unit>
  4674. <unit type="mass-pound">
  4675. <unitPattern count="one">{0} libra</unitPattern>
  4676. <unitPattern count="few">{0} libry</unitPattern>
  4677. <unitPattern count="many">{0} libry</unitPattern>
  4678. <unitPattern count="other">{0} libier</unitPattern>
  4679. </unit>
  4680. <unit type="power-horsepower">
  4681. <unitPattern count="one">{0} konská sila</unitPattern>
  4682. <unitPattern count="few">{0} konské sily</unitPattern>
  4683. <unitPattern count="many">{0} konskej sily</unitPattern>
  4684. <unitPattern count="other">{0} konských síl</unitPattern>
  4685. </unit>
  4686. <unit type="power-kilowatt">
  4687. <unitPattern count="one">{0} kilowatt</unitPattern>
  4688. <unitPattern count="few">{0} kilowatty</unitPattern>
  4689. <unitPattern count="many">{0} kilowattu</unitPattern>
  4690. <unitPattern count="other">{0} kilowattov</unitPattern>
  4691. </unit>
  4692. <unit type="power-watt">
  4693. <unitPattern count="one">{0} watt</unitPattern>
  4694. <unitPattern count="few">{0} watty</unitPattern>
  4695. <unitPattern count="many">{0} wattu</unitPattern>
  4696. <unitPattern count="other">{0} wattov</unitPattern>
  4697. </unit>
  4698. <unit type="pressure-hectopascal">
  4699. <unitPattern count="one">{0} hektopascal</unitPattern>
  4700. <unitPattern count="few">{0} hektopascaly</unitPattern>
  4701. <unitPattern count="many">{0} hektopascala</unitPattern>
  4702. <unitPattern count="other">{0} hektopascalov</unitPattern>
  4703. </unit>
  4704. <unit type="pressure-inch-hg">
  4705. <unitPattern count="one">{0} palec ortuťového stĺpca</unitPattern>
  4706. <unitPattern count="few">{0} palce ortuťového stĺpca</unitPattern>
  4707. <unitPattern count="many">{0} palce ortuťového stĺpca</unitPattern>
  4708. <unitPattern count="other">{0} palcov ortuťového stĺpca</unitPattern>
  4709. </unit>
  4710. <unit type="pressure-millibar">
  4711. <unitPattern count="one">{0} milibar</unitPattern>
  4712. <unitPattern count="few">{0} milibary</unitPattern>
  4713. <unitPattern count="many">{0} milibaru</unitPattern>
  4714. <unitPattern count="other">{0} milibarov</unitPattern>
  4715. </unit>
  4716. <unit type="speed-kilometer-per-hour">
  4717. <unitPattern count="one">{0} kilometer za hodinu</unitPattern>
  4718. <unitPattern count="few">{0} kilometre za hodinu</unitPattern>
  4719. <unitPattern count="many">{0} kilometra za hodinu</unitPattern>
  4720. <unitPattern count="other">{0} kilometrov za hodinu</unitPattern>
  4721. </unit>
  4722. <unit type="speed-meter-per-second">
  4723. <unitPattern count="one">{0} meter za sekundu</unitPattern>
  4724. <unitPattern count="few">{0} metre za sekundu</unitPattern>
  4725. <unitPattern count="many">{0} metra za sekundu</unitPattern>
  4726. <unitPattern count="other">{0} metrov za sekundu</unitPattern>
  4727. </unit>
  4728. <unit type="speed-mile-per-hour">
  4729. <unitPattern count="one">{0} míľa za hodinu</unitPattern>
  4730. <unitPattern count="few">{0} míle za hodinu</unitPattern>
  4731. <unitPattern count="many">{0} míle za hodinu</unitPattern>
  4732. <unitPattern count="other">{0} míľ za hodinu</unitPattern>
  4733. </unit>
  4734. <unit type="temperature-celsius">
  4735. <unitPattern count="one">{0} stupeň Celzia</unitPattern>
  4736. <unitPattern count="few">{0} stupne Celzia</unitPattern>
  4737. <unitPattern count="many">{0} stupňa Celzia</unitPattern>
  4738. <unitPattern count="other">{0} stupňov Celzia</unitPattern>
  4739. </unit>
  4740. <unit type="temperature-fahrenheit">
  4741. <unitPattern count="one">{0} stupeň Fahrenheita</unitPattern>
  4742. <unitPattern count="few">{0} stupne Fahrenheita</unitPattern>
  4743. <unitPattern count="many">{0} stupňa Fahrenheita</unitPattern>
  4744. <unitPattern count="other">{0} stupňov Fahrenheita</unitPattern>
  4745. </unit>
  4746. <unit type="volume-cubic-kilometer">
  4747. <unitPattern count="one">{0} kubický kilometer</unitPattern>
  4748. <unitPattern count="few">{0} kubické kilometre</unitPattern>
  4749. <unitPattern count="many">{0} kubického kilometra</unitPattern>
  4750. <unitPattern count="other">{0} kubických kilometrov</unitPattern>
  4751. </unit>
  4752. <unit type="volume-cubic-mile">
  4753. <unitPattern count="one">{0} kubická míľa</unitPattern>
  4754. <unitPattern count="few">{0} kubické míle</unitPattern>
  4755. <unitPattern count="many">{0} kubickej míle</unitPattern>
  4756. <unitPattern count="other">{0} kubických míľ</unitPattern>
  4757. </unit>
  4758. <unit type="volume-liter">
  4759. <unitPattern count="one">{0} liter</unitPattern>
  4760. <unitPattern count="few">{0} litre</unitPattern>
  4761. <unitPattern count="many">{0} litra</unitPattern>
  4762. <unitPattern count="other">{0} litrov</unitPattern>
  4763. </unit>
  4764. </unitLength>
  4765. <unitLength type="short">
  4766. <compoundUnit type="per">
  4767. <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
  4768. </compoundUnit>
  4769. <unit type="acceleration-g-force">
  4770. <unitPattern count="one">{0} G</unitPattern>
  4771. <unitPattern count="few">{0} G</unitPattern>
  4772. <unitPattern count="many">{0} G</unitPattern>
  4773. <unitPattern count="other">{0} G</unitPattern>
  4774. </unit>
  4775. <unit type="angle-arc-minute">
  4776. <unitPattern count="one">{0} min</unitPattern>
  4777. <unitPattern count="few">{0} min</unitPattern>
  4778. <unitPattern count="many">{0} min</unitPattern>
  4779. <unitPattern count="other">{0} min</unitPattern>
  4780. </unit>
  4781. <unit type="angle-arc-second">
  4782. <unitPattern count="one">{0} sek.</unitPattern>
  4783. <unitPattern count="few">{0} sek.</unitPattern>
  4784. <unitPattern count="many">{0} sek.</unitPattern>
  4785. <unitPattern count="other">{0} sek.</unitPattern>
  4786. </unit>
  4787. <unit type="angle-degree">
  4788. <unitPattern count="one">{0} stup.</unitPattern>
  4789. <unitPattern count="few">{0} stup.</unitPattern>
  4790. <unitPattern count="many">{0} stup.</unitPattern>
  4791. <unitPattern count="other">{0} stup.</unitPattern>
  4792. </unit>
  4793. <unit type="area-acre">
  4794. <unitPattern count="one">{0} ac</unitPattern>
  4795. <unitPattern count="few">{0} ac</unitPattern>
  4796. <unitPattern count="many">{0} ac</unitPattern>
  4797. <unitPattern count="other">{0} ac</unitPattern>
  4798. </unit>
  4799. <unit type="area-hectare">
  4800. <unitPattern count="one">{0} ha</unitPattern>
  4801. <unitPattern count="few">{0} ha</unitPattern>
  4802. <unitPattern count="many">{0} ha</unitPattern>
  4803. <unitPattern count="other">{0} ha</unitPattern>
  4804. </unit>
  4805. <unit type="area-square-foot">
  4806. <unitPattern count="one">{0} ft²</unitPattern>
  4807. <unitPattern count="few">{0} ft²</unitPattern>
  4808. <unitPattern count="many">{0} ft²</unitPattern>
  4809. <unitPattern count="other">{0} ft²</unitPattern>
  4810. </unit>
  4811. <unit type="area-square-kilometer">
  4812. <unitPattern count="one">{0} km²</unitPattern>
  4813. <unitPattern count="few">{0} km²</unitPattern>
  4814. <unitPattern count="many">{0} km²</unitPattern>
  4815. <unitPattern count="other">{0} km²</unitPattern>
  4816. </unit>
  4817. <unit type="area-square-meter">
  4818. <unitPattern count="one">{0} m²</unitPattern>
  4819. <unitPattern count="few">{0} m²</unitPattern>
  4820. <unitPattern count="many">{0} m²</unitPattern>
  4821. <unitPattern count="other">{0} m²</unitPattern>
  4822. </unit>
  4823. <unit type="area-square-mile">
  4824. <unitPattern count="one">{0} mi²</unitPattern>
  4825. <unitPattern count="few">{0} mi²</unitPattern>
  4826. <unitPattern count="many">{0} mi²</unitPattern>
  4827. <unitPattern count="other">{0} mi²</unitPattern>
  4828. </unit>
  4829. <unit type="duration-day">
  4830. <unitPattern count="one">{0} d.</unitPattern>
  4831. <unitPattern count="few">{0} d.</unitPattern>
  4832. <unitPattern count="many">{0} d.</unitPattern>
  4833. <unitPattern count="other">{0} d.</unitPattern>
  4834. </unit>
  4835. <unit type="duration-hour">
  4836. <unitPattern count="one">{0} hod.</unitPattern>
  4837. <unitPattern count="few">{0} hod.</unitPattern>
  4838. <unitPattern count="many">{0} hod.</unitPattern>
  4839. <unitPattern count="other">{0} hod.</unitPattern>
  4840. </unit>
  4841. <unit type="duration-millisecond">
  4842. <unitPattern count="one">{0} ms</unitPattern>
  4843. <unitPattern count="few">{0} ms</unitPattern>
  4844. <unitPattern count="many">{0} ms</unitPattern>
  4845. <unitPattern count="other">{0} ms</unitPattern>
  4846. </unit>
  4847. <unit type="duration-minute">
  4848. <unitPattern count="one">{0} min.</unitPattern>
  4849. <unitPattern count="few">{0} min.</unitPattern>
  4850. <unitPattern count="many">{0} min.</unitPattern>
  4851. <unitPattern count="other">{0} min.</unitPattern>
  4852. </unit>
  4853. <unit type="duration-month">
  4854. <unitPattern count="one">{0} mes.</unitPattern>
  4855. <unitPattern count="few">{0} mes.</unitPattern>
  4856. <unitPattern count="many">{0} mes.</unitPattern>
  4857. <unitPattern count="other">{0} mes.</unitPattern>
  4858. </unit>
  4859. <unit type="duration-second">
  4860. <unitPattern count="one">{0} sek.</unitPattern>
  4861. <unitPattern count="few">{0} sek.</unitPattern>
  4862. <unitPattern count="many">{0} sek.</unitPattern>
  4863. <unitPattern count="other">{0} sek.</unitPattern>
  4864. </unit>
  4865. <unit type="duration-week">
  4866. <unitPattern count="one">{0} týžd.</unitPattern>
  4867. <unitPattern count="few">{0} týžd.</unitPattern>
  4868. <unitPattern count="many">{0} týžd.</unitPattern>
  4869. <unitPattern count="other">{0} týžd.</unitPattern>
  4870. </unit>
  4871. <unit type="duration-year">
  4872. <unitPattern count="one">{0} r.</unitPattern>
  4873. <unitPattern count="few">{0} r.</unitPattern>
  4874. <unitPattern count="many">{0} r.</unitPattern>
  4875. <unitPattern count="other">{0} r.</unitPattern>
  4876. </unit>
  4877. <unit type="length-centimeter">
  4878. <unitPattern count="one">{0} cm</unitPattern>
  4879. <unitPattern count="few">{0} cm</unitPattern>
  4880. <unitPattern count="many">{0} cm</unitPattern>
  4881. <unitPattern count="other">{0} cm</unitPattern>
  4882. </unit>
  4883. <unit type="length-foot">
  4884. <unitPattern count="one">{0} ft</unitPattern>
  4885. <unitPattern count="few">{0} ft</unitPattern>
  4886. <unitPattern count="many">{0} ft</unitPattern>
  4887. <unitPattern count="other">{0} ft</unitPattern>
  4888. </unit>
  4889. <unit type="length-inch">
  4890. <unitPattern count="one">{0} in</unitPattern>
  4891. <unitPattern count="few">{0} in</unitPattern>
  4892. <unitPattern count="many">{0} in</unitPattern>
  4893. <unitPattern count="other">{0} in</unitPattern>
  4894. </unit>
  4895. <unit type="length-kilometer">
  4896. <unitPattern count="one">{0} km</unitPattern>
  4897. <unitPattern count="few">{0} km</unitPattern>
  4898. <unitPattern count="many">{0} km</unitPattern>
  4899. <unitPattern count="other">{0} km</unitPattern>
  4900. </unit>
  4901. <unit type="length-light-year">
  4902. <unitPattern count="one">{0} ly</unitPattern>
  4903. <unitPattern count="few">{0} ly</unitPattern>
  4904. <unitPattern count="many">{0} ly</unitPattern>
  4905. <unitPattern count="other">{0} ly</unitPattern>
  4906. </unit>
  4907. <unit type="length-meter">
  4908. <unitPattern count="one">{0} m</unitPattern>
  4909. <unitPattern count="few">{0} m</unitPattern>
  4910. <unitPattern count="many">{0} m</unitPattern>
  4911. <unitPattern count="other">{0} m</unitPattern>
  4912. </unit>
  4913. <unit type="length-mile">
  4914. <unitPattern count="one">{0} mi</unitPattern>
  4915. <unitPattern count="few">{0} mi</unitPattern>
  4916. <unitPattern count="many">{0} mi</unitPattern>
  4917. <unitPattern count="other">{0} mi</unitPattern>
  4918. </unit>
  4919. <unit type="length-millimeter">
  4920. <unitPattern count="one">{0} mm</unitPattern>
  4921. <unitPattern count="few">{0} mm</unitPattern>
  4922. <unitPattern count="many">{0} mm</unitPattern>
  4923. <unitPattern count="other">{0} mm</unitPattern>
  4924. </unit>
  4925. <unit type="length-picometer">
  4926. <unitPattern count="one">{0} pm</unitPattern>
  4927. <unitPattern count="few">{0} pm</unitPattern>
  4928. <unitPattern count="many">{0} pm</unitPattern>
  4929. <unitPattern count="other">{0} pm</unitPattern>
  4930. </unit>
  4931. <unit type="length-yard">
  4932. <unitPattern count="one">{0} yd</unitPattern>
  4933. <unitPattern count="few">{0} yd</unitPattern>
  4934. <unitPattern count="many">{0} yd</unitPattern>
  4935. <unitPattern count="other">{0} yd</unitPattern>
  4936. </unit>
  4937. <unit type="mass-gram">
  4938. <unitPattern count="one">{0} g</unitPattern>
  4939. <unitPattern count="few">{0} g</unitPattern>
  4940. <unitPattern count="many">{0} g</unitPattern>
  4941. <unitPattern count="other">{0} g</unitPattern>
  4942. </unit>
  4943. <unit type="mass-kilogram">
  4944. <unitPattern count="one">{0} kg</unitPattern>
  4945. <unitPattern count="few">{0} kg</unitPattern>
  4946. <unitPattern count="many">{0} kg</unitPattern>
  4947. <unitPattern count="other">{0} kg</unitPattern>
  4948. </unit>
  4949. <unit type="mass-ounce">
  4950. <unitPattern count="one">{0} oz</unitPattern>
  4951. <unitPattern count="few">{0} oz</unitPattern>
  4952. <unitPattern count="many">{0} oz</unitPattern>
  4953. <unitPattern count="other">{0} oz</unitPattern>
  4954. </unit>
  4955. <unit type="mass-pound">
  4956. <unitPattern count="one">{0} lb</unitPattern>
  4957. <unitPattern count="few">{0} lb</unitPattern>
  4958. <unitPattern count="many">{0} lb</unitPattern>
  4959. <unitPattern count="other">{0} lb</unitPattern>
  4960. </unit>
  4961. <unit type="power-horsepower">
  4962. <unitPattern count="one">{0} hp</unitPattern>
  4963. <unitPattern count="few">{0} hp</unitPattern>
  4964. <unitPattern count="many">{0} hp</unitPattern>
  4965. <unitPattern count="other">{0} hp</unitPattern>
  4966. </unit>
  4967. <unit type="power-kilowatt">
  4968. <unitPattern count="one">{0} kW</unitPattern>
  4969. <unitPattern count="few">{0} kW</unitPattern>
  4970. <unitPattern count="many">{0} kW</unitPattern>
  4971. <unitPattern count="other">{0} kW</unitPattern>
  4972. </unit>
  4973. <unit type="power-watt">
  4974. <unitPattern count="one">{0} W</unitPattern>
  4975. <unitPattern count="few">{0} W</unitPattern>
  4976. <unitPattern count="many">{0} W</unitPattern>
  4977. <unitPattern count="other">{0} W</unitPattern>
  4978. </unit>
  4979. <unit type="pressure-hectopascal">
  4980. <unitPattern count="one">{0} hPa</unitPattern>
  4981. <unitPattern count="few">{0} hPa</unitPattern>
  4982. <unitPattern count="many">{0} hPa</unitPattern>
  4983. <unitPattern count="other">{0} hPa</unitPattern>
  4984. </unit>
  4985. <unit type="pressure-inch-hg">
  4986. <unitPattern count="one">{0} inHg</unitPattern>
  4987. <unitPattern count="few">{0} inHg</unitPattern>
  4988. <unitPattern count="many">{0} inHg</unitPattern>
  4989. <unitPattern count="other">{0} inHg</unitPattern>
  4990. </unit>
  4991. <unit type="pressure-millibar">
  4992. <unitPattern count="one">{0} mb</unitPattern>
  4993. <unitPattern count="few">{0} mb</unitPattern>
  4994. <unitPattern count="many">{0} mb</unitPattern>
  4995. <unitPattern count="other">{0} mb</unitPattern>
  4996. </unit>
  4997. <unit type="speed-kilometer-per-hour">
  4998. <unitPattern count="one">{0} km/h</unitPattern>
  4999. <unitPattern count="few">{0} km/h</unitPattern>
  5000. <unitPattern count="many">{0} km/h</unitPattern>
  5001. <unitPattern count="other">{0} km/h</unitPattern>
  5002. </unit>
  5003. <unit type="speed-meter-per-second">
  5004. <unitPattern count="one">{0} m/s</unitPattern>
  5005. <unitPattern count="few">{0} m/s</unitPattern>
  5006. <unitPattern count="many">{0} m/s</unitPattern>
  5007. <unitPattern count="other">{0} m/s</unitPattern>
  5008. </unit>
  5009. <unit type="speed-mile-per-hour">
  5010. <unitPattern count="one">{0} mph</unitPattern>
  5011. <unitPattern count="few">{0} mph</unitPattern>
  5012. <unitPattern count="many">{0} mph</unitPattern>
  5013. <unitPattern count="other">{0} mph</unitPattern>
  5014. </unit>
  5015. <unit type="temperature-celsius">
  5016. <unitPattern count="one">{0}°C</unitPattern>
  5017. <unitPattern count="few">{0}°C</unitPattern>
  5018. <unitPattern count="many">{0}°C</unitPattern>
  5019. <unitPattern count="other">{0}°C</unitPattern>
  5020. </unit>
  5021. <unit type="temperature-fahrenheit">
  5022. <unitPattern count="one">{0}°F</unitPattern>
  5023. <unitPattern count="few">{0}°F</unitPattern>
  5024. <unitPattern count="many">{0}°F</unitPattern>
  5025. <unitPattern count="other">{0}°F</unitPattern>
  5026. </unit>
  5027. <unit type="volume-cubic-kilometer">
  5028. <unitPattern count="one">{0} km³</unitPattern>
  5029. <unitPattern count="few">{0} km³</unitPattern>
  5030. <unitPattern count="many">{0} km³</unitPattern>
  5031. <unitPattern count="other">{0} km³</unitPattern>
  5032. </unit>
  5033. <unit type="volume-cubic-mile">
  5034. <unitPattern count="one">{0} mi³</unitPattern>
  5035. <unitPattern count="few">{0} mi³</unitPattern>
  5036. <unitPattern count="many">{0} mi³</unitPattern>
  5037. <unitPattern count="other">{0} mi³</unitPattern>
  5038. </unit>
  5039. <unit type="volume-liter">
  5040. <unitPattern count="one">{0} l</unitPattern>
  5041. <unitPattern count="few">{0} l</unitPattern>
  5042. <unitPattern count="many">{0} l</unitPattern>
  5043. <unitPattern count="other">{0} l</unitPattern>
  5044. </unit>
  5045. </unitLength>
  5046. <unitLength type="narrow">
  5047. <compoundUnit type="per">
  5048. <compoundUnitPattern draft="contributed">{0}/{1}</compoundUnitPattern>
  5049. </compoundUnit>
  5050. <unit type="acceleration-g-force">
  5051. <unitPattern count="one">{0}G</unitPattern>
  5052. <unitPattern count="few">{0}G</unitPattern>
  5053. <unitPattern count="many">{0}G</unitPattern>
  5054. <unitPattern count="other">{0}G</unitPattern>
  5055. </unit>
  5056. <unit type="angle-arc-minute">
  5057. <unitPattern count="one">{0}′</unitPattern>
  5058. <unitPattern count="few">{0}′</unitPattern>
  5059. <unitPattern count="many">{0}′</unitPattern>
  5060. <unitPattern count="other">{0}′</unitPattern>
  5061. </unit>
  5062. <unit type="angle-arc-second">
  5063. <unitPattern count="one">{0}″</unitPattern>
  5064. <unitPattern count="few">{0}″</unitPattern>
  5065. <unitPattern count="many">{0}″</unitPattern>
  5066. <unitPattern count="other">{0}″</unitPattern>
  5067. </unit>
  5068. <unit type="angle-degree">
  5069. <unitPattern count="one">{0}°</unitPattern>
  5070. <unitPattern count="few">{0}°</unitPattern>
  5071. <unitPattern count="many">{0}°</unitPattern>
  5072. <unitPattern count="other">{0}°</unitPattern>
  5073. </unit>
  5074. <unit type="area-acre">
  5075. <unitPattern count="one">{0}ac</unitPattern>
  5076. <unitPattern count="few">{0}ac</unitPattern>
  5077. <unitPattern count="many">{0}ac</unitPattern>
  5078. <unitPattern count="other">{0}ac</unitPattern>
  5079. </unit>
  5080. <unit type="area-hectare">
  5081. <unitPattern count="one">{0}ha</unitPattern>
  5082. <unitPattern count="few">{0}ha</unitPattern>
  5083. <unitPattern count="many">{0}ha</unitPattern>
  5084. <unitPattern count="other">{0}ha</unitPattern>
  5085. </unit>
  5086. <unit type="area-square-foot">
  5087. <unitPattern count="one">{0}ft²</unitPattern>
  5088. <unitPattern count="few">{0}ft²</unitPattern>
  5089. <unitPattern count="many">{0}ft²</unitPattern>
  5090. <unitPattern count="other">{0}ft²</unitPattern>
  5091. </unit>
  5092. <unit type="area-square-kilometer">
  5093. <unitPattern count="one">{0} km²</unitPattern>
  5094. <unitPattern count="few">{0} km²</unitPattern>
  5095. <unitPattern count="many">{0} km²</unitPattern>
  5096. <unitPattern count="other">{0} km²</unitPattern>
  5097. </unit>
  5098. <unit type="area-square-meter">
  5099. <unitPattern count="one">{0} m²</unitPattern>
  5100. <unitPattern count="few">{0} m²</unitPattern>
  5101. <unitPattern count="many">{0} m²</unitPattern>
  5102. <unitPattern count="other">{0} m²</unitPattern>
  5103. </unit>
  5104. <unit type="area-square-mile">
  5105. <unitPattern count="one">{0}mi²</unitPattern>
  5106. <unitPattern count="few">{0}mi²</unitPattern>
  5107. <unitPattern count="many">{0}mi²</unitPattern>
  5108. <unitPattern count="other">{0}mi²</unitPattern>
  5109. </unit>
  5110. <unit type="duration-day">
  5111. <unitPattern count="one">{0}d.</unitPattern>
  5112. <unitPattern count="few">{0}d.</unitPattern>
  5113. <unitPattern count="many">{0}d.</unitPattern>
  5114. <unitPattern count="other">{0}d.</unitPattern>
  5115. </unit>
  5116. <unit type="duration-hour">
  5117. <unitPattern count="one">{0}h</unitPattern>
  5118. <unitPattern count="few">{0}h</unitPattern>
  5119. <unitPattern count="many">{0}h</unitPattern>
  5120. <unitPattern count="other">{0}h</unitPattern>
  5121. </unit>
  5122. <unit type="duration-millisecond">
  5123. <unitPattern count="one">{0}ms</unitPattern>
  5124. <unitPattern count="few">{0}ms</unitPattern>
  5125. <unitPattern count="many">{0}ms</unitPattern>
  5126. <unitPattern count="other">{0}ms</unitPattern>
  5127. </unit>
  5128. <unit type="duration-minute">
  5129. <unitPattern count="one">{0}min</unitPattern>
  5130. <unitPattern count="few">{0}min</unitPattern>
  5131. <unitPattern count="many">{0}min</unitPattern>
  5132. <unitPattern count="other">{0}min</unitPattern>
  5133. </unit>
  5134. <unit type="duration-month">
  5135. <unitPattern count="one">{0}mes.</unitPattern>
  5136. <unitPattern count="few">{0}mes.</unitPattern>
  5137. <unitPattern count="many">{0}mes.</unitPattern>
  5138. <unitPattern count="other">{0}mes.</unitPattern>
  5139. </unit>
  5140. <unit type="duration-second">
  5141. <unitPattern count="one">{0}s</unitPattern>
  5142. <unitPattern count="few">{0}s</unitPattern>
  5143. <unitPattern count="many">{0}s</unitPattern>
  5144. <unitPattern count="other">{0}s</unitPattern>
  5145. </unit>
  5146. <unit type="duration-week">
  5147. <unitPattern count="one">{0}týžd.</unitPattern>
  5148. <unitPattern count="few">{0}týžd.</unitPattern>
  5149. <unitPattern count="many">{0}týžd.</unitPattern>
  5150. <unitPattern count="other">{0}týžd.</unitPattern>
  5151. </unit>
  5152. <unit type="duration-year">
  5153. <unitPattern count="one">{0}r.</unitPattern>
  5154. <unitPattern count="few">{0}r.</unitPattern>
  5155. <unitPattern count="many">{0}r.</unitPattern>
  5156. <unitPattern count="other">{0}r.</unitPattern>
  5157. </unit>
  5158. <unit type="length-centimeter">
  5159. <unitPattern count="one">{0}cm</unitPattern>
  5160. <unitPattern count="few">{0}cm</unitPattern>
  5161. <unitPattern count="many">{0}cm</unitPattern>
  5162. <unitPattern count="other">{0}cm</unitPattern>
  5163. </unit>
  5164. <unit type="length-foot">
  5165. <unitPattern count="one">{0}′</unitPattern>
  5166. <unitPattern count="few">{0}′</unitPattern>
  5167. <unitPattern count="many">{0}′</unitPattern>
  5168. <unitPattern count="other">{0}′</unitPattern>
  5169. </unit>
  5170. <unit type="length-inch">
  5171. <unitPattern count="one">{0}in</unitPattern>
  5172. <unitPattern count="few">{0}in</unitPattern>
  5173. <unitPattern count="many">{0}in</unitPattern>
  5174. <unitPattern count="other">{0}in</unitPattern>
  5175. </unit>
  5176. <unit type="length-kilometer">
  5177. <unitPattern count="one">{0}km</unitPattern>
  5178. <unitPattern count="few">{0}km</unitPattern>
  5179. <unitPattern count="many">{0}km</unitPattern>
  5180. <unitPattern count="other">{0}km</unitPattern>
  5181. </unit>
  5182. <unit type="length-light-year">
  5183. <unitPattern count="one">{0}ly</unitPattern>
  5184. <unitPattern count="few">{0}ly</unitPattern>
  5185. <unitPattern count="many">{0}ly</unitPattern>
  5186. <unitPattern count="other">{0}ly</unitPattern>
  5187. </unit>
  5188. <unit type="length-meter">
  5189. <unitPattern count="one">{0}m</unitPattern>
  5190. <unitPattern count="few">{0}m</unitPattern>
  5191. <unitPattern count="many">{0}m</unitPattern>
  5192. <unitPattern count="other">{0}m</unitPattern>
  5193. </unit>
  5194. <unit type="length-mile">
  5195. <unitPattern count="one">{0}mi</unitPattern>
  5196. <unitPattern count="few">{0}mi</unitPattern>
  5197. <unitPattern count="many">{0}mi</unitPattern>
  5198. <unitPattern count="other">{0}mi</unitPattern>
  5199. </unit>
  5200. <unit type="length-millimeter">
  5201. <unitPattern count="one">{0}mm</unitPattern>
  5202. <unitPattern count="few">{0}mm</unitPattern>
  5203. <unitPattern count="many">{0}mm</unitPattern>
  5204. <unitPattern count="other">{0}mm</unitPattern>
  5205. </unit>
  5206. <unit type="length-picometer">
  5207. <unitPattern count="one">{0}pm</unitPattern>
  5208. <unitPattern count="few">{0}pm</unitPattern>
  5209. <unitPattern count="many">{0}pm</unitPattern>
  5210. <unitPattern count="other">{0}pm</unitPattern>
  5211. </unit>
  5212. <unit type="length-yard">
  5213. <unitPattern count="one">{0}yd</unitPattern>
  5214. <unitPattern count="few">{0}yd</unitPattern>
  5215. <unitPattern count="many">{0}yd</unitPattern>
  5216. <unitPattern count="other">{0}yd</unitPattern>
  5217. </unit>
  5218. <unit type="mass-gram">
  5219. <unitPattern count="one">{0}g</unitPattern>
  5220. <unitPattern count="few">{0}g</unitPattern>
  5221. <unitPattern count="many">{0}g</unitPattern>
  5222. <unitPattern count="other">{0}g</unitPattern>
  5223. </unit>
  5224. <unit type="mass-kilogram">
  5225. <unitPattern count="one">{0}kg</unitPattern>
  5226. <unitPattern count="few">{0}kg</unitPattern>
  5227. <unitPattern count="many">{0}kg</unitPattern>
  5228. <unitPattern count="other">{0}kg</unitPattern>
  5229. </unit>
  5230. <unit type="mass-ounce">
  5231. <unitPattern count="one">{0}oz</unitPattern>
  5232. <unitPattern count="few">{0}oz</unitPattern>
  5233. <unitPattern count="many">{0}oz</unitPattern>
  5234. <unitPattern count="other">{0}oz</unitPattern>
  5235. </unit>
  5236. <unit type="mass-pound">
  5237. <unitPattern count="one">{0}lb</unitPattern>
  5238. <unitPattern count="few">{0}lb</unitPattern>
  5239. <unitPattern count="many">{0}lb</unitPattern>
  5240. <unitPattern count="other">{0}lb</unitPattern>
  5241. </unit>
  5242. <unit type="power-horsepower">
  5243. <unitPattern count="one">{0}hp</unitPattern>
  5244. <unitPattern count="few">{0}hp</unitPattern>
  5245. <unitPattern count="many">{0}hp</unitPattern>
  5246. <unitPattern count="other">{0}hp</unitPattern>
  5247. </unit>
  5248. <unit type="power-kilowatt">
  5249. <unitPattern count="one">{0}kW</unitPattern>
  5250. <unitPattern count="few">{0}kW</unitPattern>
  5251. <unitPattern count="many">{0}kW</unitPattern>
  5252. <unitPattern count="other">{0}kW</unitPattern>
  5253. </unit>
  5254. <unit type="power-watt">
  5255. <unitPattern count="one">{0}W</unitPattern>
  5256. <unitPattern count="few">{0}W</unitPattern>
  5257. <unitPattern count="many">{0}W</unitPattern>
  5258. <unitPattern count="other">{0}W</unitPattern>
  5259. </unit>
  5260. <unit type="pressure-hectopascal">
  5261. <unitPattern count="one">{0}hPa</unitPattern>
  5262. <unitPattern count="few">{0}hPa</unitPattern>
  5263. <unitPattern count="many">{0}hPa</unitPattern>
  5264. <unitPattern count="other">{0}hPa</unitPattern>
  5265. </unit>
  5266. <unit type="pressure-inch-hg">
  5267. <unitPattern count="one">{0}&quot; Hg</unitPattern>
  5268. <unitPattern count="few">{0}&quot; Hg</unitPattern>
  5269. <unitPattern count="many">{0}&quot; Hg</unitPattern>
  5270. <unitPattern count="other">{0}&quot; Hg</unitPattern>
  5271. </unit>
  5272. <unit type="pressure-millibar">
  5273. <unitPattern count="one">{0}mb</unitPattern>
  5274. <unitPattern count="few">{0}mb</unitPattern>
  5275. <unitPattern count="many">{0}mb</unitPattern>
  5276. <unitPattern count="other">{0}mb</unitPattern>
  5277. </unit>
  5278. <unit type="speed-kilometer-per-hour">
  5279. <unitPattern count="one">{0}km/h</unitPattern>
  5280. <unitPattern count="few">{0}km/h</unitPattern>
  5281. <unitPattern count="many">{0}km/h</unitPattern>
  5282. <unitPattern count="other">{0}km/h</unitPattern>
  5283. </unit>
  5284. <unit type="speed-meter-per-second">
  5285. <unitPattern count="one">{0}m/s</unitPattern>
  5286. <unitPattern count="few">{0}m/s</unitPattern>
  5287. <unitPattern count="many">{0}m/s</unitPattern>
  5288. <unitPattern count="other">{0}m/s</unitPattern>
  5289. </unit>
  5290. <unit type="speed-mile-per-hour">
  5291. <unitPattern count="one">{0}mph</unitPattern>
  5292. <unitPattern count="few">{0}mph</unitPattern>
  5293. <unitPattern count="many">{0}mph</unitPattern>
  5294. <unitPattern count="other">{0}mph</unitPattern>
  5295. </unit>
  5296. <unit type="temperature-celsius">
  5297. <unitPattern count="one">{0}°</unitPattern>
  5298. <unitPattern count="few">{0}°</unitPattern>
  5299. <unitPattern count="many">{0}°</unitPattern>
  5300. <unitPattern count="other">{0}°</unitPattern>
  5301. </unit>
  5302. <unit type="temperature-fahrenheit">
  5303. <unitPattern count="one">{0}°F</unitPattern>
  5304. <unitPattern count="few">{0}°F</unitPattern>
  5305. <unitPattern count="many">{0}°F</unitPattern>
  5306. <unitPattern count="other">{0}°F</unitPattern>
  5307. </unit>
  5308. <unit type="volume-cubic-kilometer">
  5309. <unitPattern count="one">{0}km³</unitPattern>
  5310. <unitPattern count="few">{0}km³</unitPattern>
  5311. <unitPattern count="many">{0}km³</unitPattern>
  5312. <unitPattern count="other">{0}km³</unitPattern>
  5313. </unit>
  5314. <unit type="volume-cubic-mile">
  5315. <unitPattern count="one">{0}mi³</unitPattern>
  5316. <unitPattern count="few">{0}mi³</unitPattern>
  5317. <unitPattern count="many">{0}mi³</unitPattern>
  5318. <unitPattern count="other">{0}mi³</unitPattern>
  5319. </unit>
  5320. <unit type="volume-liter">
  5321. <unitPattern count="one">{0}l</unitPattern>
  5322. <unitPattern count="few">{0}l</unitPattern>
  5323. <unitPattern count="many">{0}l</unitPattern>
  5324. <unitPattern count="other">{0}l</unitPattern>
  5325. </unit>
  5326. </unitLength>
  5327. <durationUnit type="hm">
  5328. <durationUnitPattern>h:mm</durationUnitPattern>
  5329. </durationUnit>
  5330. <durationUnit type="hms">
  5331. <durationUnitPattern>h:mm:ss</durationUnitPattern>
  5332. </durationUnit>
  5333. <durationUnit type="ms">
  5334. <durationUnitPattern>m:ss</durationUnitPattern>
  5335. </durationUnit>
  5336. </units>
  5337. <listPatterns>
  5338. <listPattern>
  5339. <listPatternPart type="start">{0}, {1}</listPatternPart>
  5340. <listPatternPart type="middle">{0}, {1}</listPatternPart>
  5341. <listPatternPart type="end" draft="contributed">{0} a {1}</listPatternPart>
  5342. <listPatternPart type="2" draft="contributed">{0} a {1}</listPatternPart>
  5343. </listPattern>
  5344. <listPattern type="unit">
  5345. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5346. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5347. <listPatternPart type="end" draft="contributed">{0}, {1}</listPatternPart>
  5348. <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
  5349. </listPattern>
  5350. <listPattern type="unit-short">
  5351. <listPatternPart type="start" draft="contributed">{0}, {1}</listPatternPart>
  5352. <listPatternPart type="middle" draft="contributed">{0}, {1}</listPatternPart>
  5353. <listPatternPart type="end" draft="contributed">{0}, {1}</listPatternPart>
  5354. <listPatternPart type="2" draft="contributed">{0}, {1}</listPatternPart>
  5355. </listPattern>
  5356. </listPatterns>
  5357. <posix>
  5358. <messages>
  5359. <yesstr>áno:a</yesstr>
  5360. <nostr>nie:n</nostr>
  5361. </messages>
  5362. </posix>
  5363. </ldml>