hr.xml 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
  3. <ldml>
  4. <identity>
  5. <version number="$Revision: 1.109 $"/>
  6. <generation date="$Date: 2009/05/05 23:06:36 $"/>
  7. <language type="hr"/>
  8. </identity>
  9. <localeDisplayNames>
  10. <localeDisplayPattern>
  11. <localePattern>{0} ({1})</localePattern>
  12. <localeSeparator>, </localeSeparator>
  13. </localeDisplayPattern>
  14. <languages>
  15. <language type="aa">afarski</language>
  16. <language type="ab">abhaski</language>
  17. <language type="ace">achinese</language>
  18. <language type="ach">acoli</language>
  19. <language type="ada">adangme</language>
  20. <language type="ady">adigejski</language>
  21. <language type="ae">avestan</language>
  22. <language type="af">afrikaans</language>
  23. <language type="afa">ostali afričko-azijski</language>
  24. <language type="afh">afrihili</language>
  25. <language type="ain">ainu</language>
  26. <language type="ak">akanski</language>
  27. <language type="akk">akkadian</language>
  28. <language type="ale">aleutski</language>
  29. <language type="alg">algonquian</language>
  30. <language type="alt">južni altai</language>
  31. <language type="am">amharik</language>
  32. <language type="an">aragonski</language>
  33. <language type="ang">staroengleski</language>
  34. <language type="anp">angika</language>
  35. <language type="apa">apaški</language>
  36. <language type="ar">arapski</language>
  37. <language type="arc">aramejski</language>
  38. <language type="arn">araukanski</language>
  39. <language type="arp">arapaho</language>
  40. <language type="art">umjetni jezik</language>
  41. <language type="arw">arawak</language>
  42. <language type="as">asamski</language>
  43. <language type="ast">asturijski</language>
  44. <language type="ath">athapascan</language>
  45. <language type="aus">australski</language>
  46. <language type="av">avarski</language>
  47. <language type="awa">awadhi</language>
  48. <language type="ay">aymara</language>
  49. <language type="az">azerbajdžanski</language>
  50. <language type="ba">baškirski</language>
  51. <language type="bad">banda</language>
  52. <language type="bai">bamileke</language>
  53. <language type="bal">baluchi</language>
  54. <language type="ban">balinezijski</language>
  55. <language type="bas">basa</language>
  56. <language type="bat">baltički</language>
  57. <language type="be">bjeloruski</language>
  58. <language type="bej">beja</language>
  59. <language type="bem">bemba</language>
  60. <language type="ber">berberski</language>
  61. <language type="bg">bugarski</language>
  62. <language type="bh">bihari</language>
  63. <language type="bho">bhojpuri</language>
  64. <language type="bi">bislama</language>
  65. <language type="bik">bikol</language>
  66. <language type="bin">bini</language>
  67. <language type="bla">siksika</language>
  68. <language type="bm">bambara</language>
  69. <language type="bn">bengalski</language>
  70. <language type="bnt">bantu</language>
  71. <language type="bo">tibetanski</language>
  72. <language type="br">bretonski</language>
  73. <language type="bra">braj</language>
  74. <language type="bs">bosanski</language>
  75. <language type="btk">batak</language>
  76. <language type="bua">buriat</language>
  77. <language type="bug">buginski</language>
  78. <language type="byn">blin</language>
  79. <language type="ca">katalonski</language>
  80. <language type="cad">caddo</language>
  81. <language type="cai">jezik srednjoameričkih Indijanaca</language>
  82. <language type="car">karipski</language>
  83. <language type="cau">kavkaski</language>
  84. <language type="cch">atsam</language>
  85. <language type="ce">čečenski</language>
  86. <language type="ceb">cebuano</language>
  87. <language type="cel">keltski</language>
  88. <language type="ch">chamorro</language>
  89. <language type="chb">chibcha</language>
  90. <language type="chg">chagatai</language>
  91. <language type="chk">chuukese</language>
  92. <language type="chm">mari</language>
  93. <language type="chn">chinook žargon</language>
  94. <language type="cho">choctaw</language>
  95. <language type="chp">chipewyan</language>
  96. <language type="chr">čeroki</language>
  97. <language type="chy">čejenski</language>
  98. <language type="cmc">chamic</language>
  99. <language type="co">korzički</language>
  100. <language type="cop">koptski</language>
  101. <language type="cpe">engleski - na osnovi kreolskog ili pidgin</language>
  102. <language type="cpf">francuski - na osnovi kreolskog ili pidgin</language>
  103. <language type="cpp">kreolski ili pidgin na osnovi portugalskog</language>
  104. <language type="cr">cree</language>
  105. <language type="crh">krimski turski</language>
  106. <language type="crp">kreolski ili pidgin</language>
  107. <language type="cs">češki</language>
  108. <language type="csb">kašupski</language>
  109. <language type="cu">crkvenoslavenski</language>
  110. <language type="cus">kušitski</language>
  111. <language type="cv">chuvash</language>
  112. <language type="cy">velški</language>
  113. <language type="da">danski</language>
  114. <language type="dak">dakota jezik</language>
  115. <language type="dar">dargwa</language>
  116. <language type="day">dayak</language>
  117. <language type="de">njemački</language>
  118. <language type="de_AT">austrijski njemački</language>
  119. <language type="de_CH">gornjonjemački (švicarski)</language>
  120. <language type="del">delavarski</language>
  121. <language type="den">slave</language>
  122. <language type="dgr">dogrib</language>
  123. <language type="din">dinka</language>
  124. <language type="doi">dogri</language>
  125. <language type="dra">dravidski</language>
  126. <language type="dsb">lužičkosrpski</language>
  127. <language type="dua">duala</language>
  128. <language type="dum">nizozemski, srednji</language>
  129. <language type="dv">divehi</language>
  130. <language type="dyu">dyula</language>
  131. <language type="dz">dzongkha</language>
  132. <language type="ee">ewe</language>
  133. <language type="efi">efik</language>
  134. <language type="egy">staroegipatski</language>
  135. <language type="eka">ekajuk</language>
  136. <language type="el">grčki</language>
  137. <language type="elx">elamitski</language>
  138. <language type="en">engleski</language>
  139. <language type="en_AU">engleski (australski)</language>
  140. <language type="en_CA">kanadski engleski</language>
  141. <language type="en_GB">engleski (britanski)</language>
  142. <language type="en_US">engleski (američki)</language>
  143. <language type="enm">engleski, srednji</language>
  144. <language type="eo">esperanto</language>
  145. <language type="es">španjolski</language>
  146. <language type="es_419">španjolski (latinoamerički)</language>
  147. <language type="es_ES">iberski španjolski</language>
  148. <language type="et">estonijski</language>
  149. <language type="eu">baskijski</language>
  150. <language type="ewo">ewondo</language>
  151. <language type="fa">perzijski</language>
  152. <language type="fan">fang</language>
  153. <language type="fat">fanti</language>
  154. <language type="ff">fulah</language>
  155. <language type="fi">finski</language>
  156. <language type="fil">filipino</language>
  157. <language type="fiu">ugro-finski jezik</language>
  158. <language type="fj">fidžijski</language>
  159. <language type="fo">faroanski</language>
  160. <language type="fon">fon</language>
  161. <language type="fr">francuski</language>
  162. <language type="fr_CA">kanadski francuski</language>
  163. <language type="fr_CH">švicarski francuski</language>
  164. <language type="frm">francuski, srednji</language>
  165. <language type="fro">starofrancuski</language>
  166. <language type="frr">sjevernofrizijski</language>
  167. <language type="frs">istočnofrizijski</language>
  168. <language type="fur">friulski</language>
  169. <language type="fy">frizijski</language>
  170. <language type="ga">irski</language>
  171. <language type="gaa">ga</language>
  172. <language type="gay">gayo</language>
  173. <language type="gba">gbaya</language>
  174. <language type="gd">škotski-galski</language>
  175. <language type="gem">germanski</language>
  176. <language type="gez">staroetiopski</language>
  177. <language type="gil">gilbertski</language>
  178. <language type="gl">galicijski</language>
  179. <language type="gmh">njemački, srednji visoki</language>
  180. <language type="gn">guarani</language>
  181. <language type="goh">staronjemački, visoki</language>
  182. <language type="gon">gondi</language>
  183. <language type="gor">gorontalo</language>
  184. <language type="got">gothic</language>
  185. <language type="grb">grebo</language>
  186. <language type="grc">starogrčki</language>
  187. <language type="gsw">švicarski njemački</language>
  188. <language type="gu">gujarati</language>
  189. <language type="gv">manx</language>
  190. <language type="gwi">gwich'in</language>
  191. <language type="ha">hausa</language>
  192. <language type="hai">haidi</language>
  193. <language type="haw">havajski</language>
  194. <language type="he">hebrejski</language>
  195. <language type="hi">hindu</language>
  196. <language type="hil">hiligaynon</language>
  197. <language type="him">himachali</language>
  198. <language type="hit">hetitski</language>
  199. <language type="hmn">hmong</language>
  200. <language type="ho">hiri motu</language>
  201. <language type="hr">hrvatski</language>
  202. <language type="hsb">gornjolužički</language>
  203. <language type="ht">kreolski</language>
  204. <language type="hu">mađarski</language>
  205. <language type="hup">hupa</language>
  206. <language type="hy">armenski</language>
  207. <language type="hz">herero</language>
  208. <language type="ia">interlingua</language>
  209. <language type="iba">iban</language>
  210. <language type="id">indonezijski</language>
  211. <language type="ie">interligua</language>
  212. <language type="ig">igbo</language>
  213. <language type="ii">sichuan yi</language>
  214. <language type="ijo">ijo</language>
  215. <language type="ik">inupiaq</language>
  216. <language type="ilo">iloko</language>
  217. <language type="inc">indijski</language>
  218. <language type="ine">indoeuropski</language>
  219. <language type="inh">ingušetski</language>
  220. <language type="io">ido</language>
  221. <language type="ira">iranski</language>
  222. <language type="iro">irokeški</language>
  223. <language type="is">islandski</language>
  224. <language type="it">talijanski</language>
  225. <language type="iu">inuktitut</language>
  226. <language type="ja">japanski</language>
  227. <language type="jbo">lojban</language>
  228. <language type="jpr">judejsko-perzijski</language>
  229. <language type="jrb">judejsko-arapski</language>
  230. <language type="jv">javanski</language>
  231. <language type="ka">gruzijski</language>
  232. <language type="kaa">kara-kalpak</language>
  233. <language type="kab">kabyle</language>
  234. <language type="kac">kachin</language>
  235. <language type="kaj">kaje</language>
  236. <language type="kam">kamba</language>
  237. <language type="kar">karen</language>
  238. <language type="kaw">kawi</language>
  239. <language type="kbd">kabardian</language>
  240. <language type="kcg">tyap</language>
  241. <language type="kfo">koro</language>
  242. <language type="kg">kongo</language>
  243. <language type="kha">khasi</language>
  244. <language type="khi">kojsanski</language>
  245. <language type="kho">khotanese</language>
  246. <language type="ki">kikuyu</language>
  247. <language type="kj">kuanyama</language>
  248. <language type="kk">kazaški</language>
  249. <language type="kl">kalaallisut</language>
  250. <language type="km">kmerski</language>
  251. <language type="kmb">kimbundu</language>
  252. <language type="kn">kannada</language>
  253. <language type="ko">korejski</language>
  254. <language type="kok">konkani</language>
  255. <language type="kos">naurski</language>
  256. <language type="kpe">kpelle</language>
  257. <language type="kr">kanuri</language>
  258. <language type="krc">karachay-balkar</language>
  259. <language type="krl">karelijski</language>
  260. <language type="kro">kru</language>
  261. <language type="kru">kuruški</language>
  262. <language type="ks">kašmirski</language>
  263. <language type="ku">kurdski</language>
  264. <language type="kum">kumyk</language>
  265. <language type="kut">kutenai</language>
  266. <language type="kv">komi</language>
  267. <language type="kw">kornski</language>
  268. <language type="ky">kirgiški</language>
  269. <language type="la">latinski</language>
  270. <language type="lad">ladino</language>
  271. <language type="lah">lahnda</language>
  272. <language type="lam">lamba</language>
  273. <language type="lb">luksemburški</language>
  274. <language type="lez">lezgiški</language>
  275. <language type="lg">ganda</language>
  276. <language type="li">limburgish</language>
  277. <language type="ln">lingala</language>
  278. <language type="lo">laoski</language>
  279. <language type="lol">mongo</language>
  280. <language type="loz">lozi</language>
  281. <language type="lt">litvanski</language>
  282. <language type="lu">luba-katanga</language>
  283. <language type="lua">luba-lulua</language>
  284. <language type="lui">luiseno</language>
  285. <language type="lun">lunda</language>
  286. <language type="luo">luo</language>
  287. <language type="lus">lushai</language>
  288. <language type="lv">latvijski</language>
  289. <language type="mad">madurski</language>
  290. <language type="mag">magahi</language>
  291. <language type="mai">maithili</language>
  292. <language type="mak">makasar</language>
  293. <language type="man">mandingo</language>
  294. <language type="map">austronezijski</language>
  295. <language type="mas">masajski</language>
  296. <language type="mdf">moksha</language>
  297. <language type="mdr">mandar</language>
  298. <language type="men">mende</language>
  299. <language type="mg">malgaški</language>
  300. <language type="mga">irski, srednji</language>
  301. <language type="mh">maršalski</language>
  302. <language type="mi">maorski</language>
  303. <language type="mic">micmac</language>
  304. <language type="min">minangkabau</language>
  305. <language type="mis">ostali jezici</language>
  306. <language type="mk">makedonski</language>
  307. <language type="mkh">mkh</language>
  308. <language type="ml">malayalam</language>
  309. <language type="mn">mongolski</language>
  310. <language type="mnc">mandžurski</language>
  311. <language type="mni">manipurski</language>
  312. <language type="mno">manobo</language>
  313. <language type="mo">moldavski</language>
  314. <language type="moh">mohawk</language>
  315. <language type="mos">mossi</language>
  316. <language type="mr">marathi</language>
  317. <language type="ms">malajski</language>
  318. <language type="mt">malteški</language>
  319. <language type="mul">više jezika</language>
  320. <language type="mun">munda</language>
  321. <language type="mus">creek</language>
  322. <language type="mwl">mirandski</language>
  323. <language type="mwr">marwari</language>
  324. <language type="my">burmanski</language>
  325. <language type="myn">majanski</language>
  326. <language type="myv">mordvinski</language>
  327. <language type="na">nauru</language>
  328. <language type="nah">nahuatl</language>
  329. <language type="nai">jezik sjevernoameričkih Indijanaca</language>
  330. <language type="nap">napolitanski</language>
  331. <language type="nb">književni norveški</language>
  332. <language type="nd">sjeverni ndebele</language>
  333. <language type="nds">donjonjemački</language>
  334. <language type="ne">nepalski</language>
  335. <language type="new">newari</language>
  336. <language type="ng">ndonga</language>
  337. <language type="nia">nias</language>
  338. <language type="nic">nigersko-kordofanski</language>
  339. <language type="niu">niujski</language>
  340. <language type="nl">nizozemski</language>
  341. <language type="nl_BE">flamanski</language>
  342. <language type="nn">novonorveški</language>
  343. <language type="no">norveški</language>
  344. <language type="nog">nogajski</language>
  345. <language type="non">staronorveški</language>
  346. <language type="nqo">n'ko</language>
  347. <language type="nr">južni ndebele</language>
  348. <language type="nso">sjeverni sotho</language>
  349. <language type="nub">nubijski</language>
  350. <language type="nv">navajo</language>
  351. <language type="nwc">klasični newari</language>
  352. <language type="ny">nyanja</language>
  353. <language type="nym">nyamwezi</language>
  354. <language type="nyn">nyankole</language>
  355. <language type="nyo">nyoro</language>
  356. <language type="nzi">nzima</language>
  357. <language type="oc">okcitanski</language>
  358. <language type="oj">ojibwa</language>
  359. <language type="om">oromo</language>
  360. <language type="or">orijski</language>
  361. <language type="os">osetski</language>
  362. <language type="osa">osage</language>
  363. <language type="ota">turski - otomanski</language>
  364. <language type="oto">otomijski</language>
  365. <language type="pa">punjabi</language>
  366. <language type="paa">papuanski</language>
  367. <language type="pag">pangasinan</language>
  368. <language type="pal">pahlavi</language>
  369. <language type="pam">pampanga</language>
  370. <language type="pap">papiamento</language>
  371. <language type="pau">palauanski</language>
  372. <language type="peo">staroperzijski</language>
  373. <language type="phi">filipinski</language>
  374. <language type="phn">fenički</language>
  375. <language type="pi">pali</language>
  376. <language type="pl">poljski</language>
  377. <language type="pon">pohnpeian</language>
  378. <language type="pra">prakrit</language>
  379. <language type="pro">staroprovansalski</language>
  380. <language type="ps">paštu</language>
  381. <language type="pt">portugalski</language>
  382. <language type="pt_BR">brazilski portugalski</language>
  383. <language type="pt_PT">portugalski (iberijski)</language>
  384. <language type="qu">quechua</language>
  385. <language type="raj">rajasthani</language>
  386. <language type="rap">rapa nui</language>
  387. <language type="rar">rarotonški</language>
  388. <language type="rm">retoromanski</language>
  389. <language type="rn">rundi</language>
  390. <language type="ro">rumunjski</language>
  391. <language type="roa">romanski</language>
  392. <language type="rom">romski</language>
  393. <language type="root">korijenski</language>
  394. <language type="ru">ruski</language>
  395. <language type="rup">aromunski</language>
  396. <language type="rw">kinyarwanda</language>
  397. <language type="sa">sanskrtski</language>
  398. <language type="sad">sandawe</language>
  399. <language type="sah">jakutski</language>
  400. <language type="sai">jezik južnoameričkih Indijanaca</language>
  401. <language type="sal">salishan</language>
  402. <language type="sam">samarijanski aramejski</language>
  403. <language type="sas">sasak</language>
  404. <language type="sat">santali</language>
  405. <language type="sc">sardski</language>
  406. <language type="scn">sicilijski</language>
  407. <language type="sco">škotski</language>
  408. <language type="sd">sindhi</language>
  409. <language type="se">južni sami</language>
  410. <language type="sel">selkupski</language>
  411. <language type="sem">semitic</language>
  412. <language type="sg">sango</language>
  413. <language type="sga">staroirski</language>
  414. <language type="sgn">znakovni jezik</language>
  415. <language type="sh">srpsko-hrvatski</language>
  416. <language type="shn">shan</language>
  417. <language type="si">singaleški</language>
  418. <language type="sid">sidamo</language>
  419. <language type="sio">siouan</language>
  420. <language type="sit">sino-tibetski</language>
  421. <language type="sk">slovački</language>
  422. <language type="sl">slovenski</language>
  423. <language type="sla">slavenski</language>
  424. <language type="sm">samoanski</language>
  425. <language type="sma">sjeverni sami</language>
  426. <language type="smi">sami</language>
  427. <language type="smj">lule sami</language>
  428. <language type="smn">inari sami</language>
  429. <language type="sms">skolt sami</language>
  430. <language type="sn">shona</language>
  431. <language type="snk">soninke</language>
  432. <language type="so">somalski</language>
  433. <language type="sog">sogdien</language>
  434. <language type="son">songhai</language>
  435. <language type="sq">albanski</language>
  436. <language type="sr">srpski</language>
  437. <language type="srn">sranan tongo</language>
  438. <language type="srr">serer</language>
  439. <language type="ss">svati</language>
  440. <language type="ssa">nilo-saharski</language>
  441. <language type="st">sesotski</language>
  442. <language type="su">sundanski</language>
  443. <language type="suk">sukuma</language>
  444. <language type="sus">susu</language>
  445. <language type="sux">sumerski</language>
  446. <language type="sv">švedski</language>
  447. <language type="sw">svahili</language>
  448. <language type="syc">klasični sirski</language>
  449. <language type="syr">sirijski</language>
  450. <language type="ta">tamilski</language>
  451. <language type="tai">tajski</language>
  452. <language type="te">telugu</language>
  453. <language type="tem">temne</language>
  454. <language type="ter">tereno</language>
  455. <language type="tet">tetum</language>
  456. <language type="tg">tajik</language>
  457. <language type="th">tajlandski</language>
  458. <language type="ti">tigrinya</language>
  459. <language type="tig">tigriški</language>
  460. <language type="tiv">tiv</language>
  461. <language type="tk">turkmenski</language>
  462. <language type="tkl">tokelaunski</language>
  463. <language type="tl">tagalog</language>
  464. <language type="tlh">klingonski</language>
  465. <language type="tli">tlingit</language>
  466. <language type="tmh">tamashek</language>
  467. <language type="tn">cvana</language>
  468. <language type="to">tonga</language>
  469. <language type="tog">nyasa tonga</language>
  470. <language type="tpi">tok pisin</language>
  471. <language type="tr">turski</language>
  472. <language type="ts">tsonga</language>
  473. <language type="tsi">tsimshian</language>
  474. <language type="tt">tatarski</language>
  475. <language type="tum">tumbuka</language>
  476. <language type="tup">tupi</language>
  477. <language type="tut">altajski</language>
  478. <language type="tvl">tuvaluanski</language>
  479. <language type="tw">twi</language>
  480. <language type="ty">tahićanski</language>
  481. <language type="tyv">tuvinian</language>
  482. <language type="udm">udmurtski</language>
  483. <language type="ug">uighur</language>
  484. <language type="uga">ugaritski</language>
  485. <language type="uk">ukrajinski</language>
  486. <language type="umb">umbundu</language>
  487. <language type="und">nepoznati ili nevažeći jezik</language>
  488. <language type="ur">urdu</language>
  489. <language type="uz">uzbečki</language>
  490. <language type="vai">vai</language>
  491. <language type="ve">venda</language>
  492. <language type="vi">vijetnamski</language>
  493. <language type="vo">volapük</language>
  494. <language type="vot">votic</language>
  495. <language type="wa">valonski</language>
  496. <language type="wak">wakashan</language>
  497. <language type="wal">walamo</language>
  498. <language type="war">waray</language>
  499. <language type="was">washo</language>
  500. <language type="wen">lužički</language>
  501. <language type="wo">wolof</language>
  502. <language type="xal">kalmyk</language>
  503. <language type="xh">xhosa</language>
  504. <language type="yao">yao</language>
  505. <language type="yap">japski</language>
  506. <language type="yi">jidiš</language>
  507. <language type="yo">joruba</language>
  508. <language type="ypk">yupik</language>
  509. <language type="za">zhuang</language>
  510. <language type="zap">zapotec</language>
  511. <language type="zbl">blissymbols</language>
  512. <language type="zen">zenaga</language>
  513. <language type="zh">kineski</language>
  514. <language type="zh_Hans">kineski (pojednostavljeni)</language>
  515. <language type="zh_Hant">kineski (tradicionalni)</language>
  516. <language type="znd">zande</language>
  517. <language type="zu">zulu</language>
  518. <language type="zun">zuni</language>
  519. <language type="zxx">bez jezičnog sadržaja</language>
  520. <language type="zza">zazaki</language>
  521. </languages>
  522. <scripts>
  523. <script type="Arab">arapsko pismo</script>
  524. <script type="Armi">aramejsko pismo</script>
  525. <script type="Armn">armensko pismo</script>
  526. <script type="Avst">avestansko pismo</script>
  527. <script type="Bali">balijsko pismo</script>
  528. <script type="Batk">batak pismo</script>
  529. <script type="Beng">bengalsko pismo</script>
  530. <script type="Blis">blissymbols</script>
  531. <script type="Bopo">bopomofo pismo</script>
  532. <script type="Brah">brahmi pismo</script>
  533. <script type="Brai">Braillovo pismo</script>
  534. <script type="Bugi">buginsko pismo</script>
  535. <script type="Buhd">buhid pismo</script>
  536. <script type="Cakm">chakma pismo</script>
  537. <script type="Cans">unificirani kanadski aboriđinski slogovi</script>
  538. <script type="Cari">karijsko pismo</script>
  539. <script type="Cham">čamsko pismo</script>
  540. <script type="Cher">čeroki pismo</script>
  541. <script type="Cirt">cirth pismo</script>
  542. <script type="Copt">koptsko pismo</script>
  543. <script type="Cprt">cypriot pismo</script>
  544. <script type="Cyrl">ćirilica</script>
  545. <script type="Cyrs">staroslavenska crkvena čirilica</script>
  546. <script type="Deva">devangari pismo</script>
  547. <script type="Dsrt">deseret pismo</script>
  548. <script type="Egyd">egipatsko narodno pismo</script>
  549. <script type="Egyh">egipatsko hijeratsko pismo</script>
  550. <script type="Egyp">egipatski hijeroglifi</script>
  551. <script type="Ethi">etiopsko pimo</script>
  552. <script type="Geok">gruzijsko khutsuri pismo</script>
  553. <script type="Geor">gruzijsko pismo</script>
  554. <script type="Glag">glagoljica</script>
  555. <script type="Goth">gotičko pismo</script>
  556. <script type="Grek">grčko pismo</script>
  557. <script type="Gujr">gujarati pismo</script>
  558. <script type="Guru">gurmukhi pismo</script>
  559. <script type="Hang">hangul pismo</script>
  560. <script type="Hani">han pismo</script>
  561. <script type="Hano">hanunoo pismo</script>
  562. <script type="Hans">pojednostavljeno han pismo</script>
  563. <script type="Hant">tradicionalno han pismo</script>
  564. <script type="Hebr">hebrejsko pismo</script>
  565. <script type="Hira">hiragana pismo</script>
  566. <script type="Hmng">pahawh hmong pismo</script>
  567. <script type="Hrkt">katakana ili hiragana pismo</script>
  568. <script type="Hung">staro mađarsko pismo</script>
  569. <script type="Inds">indijsko pismo</script>
  570. <script type="Ital">staro talijansko pismo</script>
  571. <script type="Java">javansko pismo</script>
  572. <script type="Jpan">japansko pismo</script>
  573. <script type="Kali">kayah li pismo</script>
  574. <script type="Kana">katakana pismo</script>
  575. <script type="Khar">kharoshthi pismo</script>
  576. <script type="Khmr">kmersko pismo</script>
  577. <script type="Knda">kannada pismo</script>
  578. <script type="Kore">korejsko pismo</script>
  579. <script type="Kthi">kaithi pismo</script>
  580. <script type="Lana">lanna pismo</script>
  581. <script type="Laoo">laosko pismo</script>
  582. <script type="Latf">fraktur latinica</script>
  583. <script type="Latg">keltska latinica</script>
  584. <script type="Latn">latinica</script>
  585. <script type="Lepc">lepcha pismo</script>
  586. <script type="Limb">limbu pismo</script>
  587. <script type="Lina">linear A pismo</script>
  588. <script type="Linb">linear B pismo</script>
  589. <script type="Lyci">likijsko pismo</script>
  590. <script type="Lydi">lidijsko pismo</script>
  591. <script type="Mand">mandai pismo</script>
  592. <script type="Mani">manihejsko pismo</script>
  593. <script type="Maya">majanski hijeroglifi</script>
  594. <script type="Mero">meroitic pismo</script>
  595. <script type="Mlym">majalajam pismo</script>
  596. <script type="Mong">mongolijsko pismo</script>
  597. <script type="Moon">moon pismo</script>
  598. <script type="Mtei">meitei mayek pismo</script>
  599. <script type="Mymr">mianmarko pismo</script>
  600. <script type="Nkoo">n'ko pismo</script>
  601. <script type="Ogam">ogham pismo</script>
  602. <script type="Olck">ol chiki pismo</script>
  603. <script type="Orkh">orkhon pismo</script>
  604. <script type="Orya">oriya pismo</script>
  605. <script type="Osma">osmanya pismo</script>
  606. <script type="Perm">staro permic pismo</script>
  607. <script type="Phag">phags-pa pismo</script>
  608. <script type="Phli">pisani pahlavi</script>
  609. <script type="Phlp">psalter pahlavi</script>
  610. <script type="Phlv">pahlavi pismo</script>
  611. <script type="Phnx">feničko pismo</script>
  612. <script type="Plrd">pollard fonetsko pismo</script>
  613. <script type="Prti">pisani parthian</script>
  614. <script type="Qaai">nasljedno pismo</script>
  615. <script type="Rjng">rejang pismo</script>
  616. <script type="Roro">rongorongo pismo</script>
  617. <script type="Runr">runsko pismo</script>
  618. <script type="Samr">samaritansko pismo</script>
  619. <script type="Sara">sarati pismo</script>
  620. <script type="Saur">saurashtra pismo</script>
  621. <script type="Sgnw">znakovno pismo</script>
  622. <script type="Shaw">shavian pismo</script>
  623. <script type="Sinh">singaleško pismo</script>
  624. <script type="Sund">sudansko pismo</script>
  625. <script type="Sylo">syloti nagri pismo</script>
  626. <script type="Syrc">sirijsko pismo</script>
  627. <script type="Syre">sirijsko estrangelo pismo</script>
  628. <script type="Syrj">pismo zapadne Sirije</script>
  629. <script type="Syrn">pismo istočne Sirije</script>
  630. <script type="Tagb">tagbanwa pismo</script>
  631. <script type="Tale">tai le pismo</script>
  632. <script type="Talu">novo tai lue pismo</script>
  633. <script type="Taml">tamilsko pismo</script>
  634. <script type="Tavt">tai viet pismo</script>
  635. <script type="Telu">telugu pismo</script>
  636. <script type="Teng">tengwar pismo</script>
  637. <script type="Tfng">tifinar</script>
  638. <script type="Tglg">tagalog pismo</script>
  639. <script type="Thaa">thaana pismo</script>
  640. <script type="Thai">tajlandsko pismo</script>
  641. <script type="Tibt">tibetansko pismo</script>
  642. <script type="Ugar">ugaritsko pismo</script>
  643. <script type="Vaii">vai pismo</script>
  644. <script type="Visp">Visible Speech</script>
  645. <script type="Xpeo">staro perzijsko pismo</script>
  646. <script type="Xsux">sumersko-akadsko cuneiform pismo</script>
  647. <script type="Yiii">Yi pismo</script>
  648. <script type="Zmth">matematičko znakovlje</script>
  649. <script type="Zsym">simboli</script>
  650. <script type="Zxxx">nepisani jezik</script>
  651. <script type="Zyyy">zajedničko pismo</script>
  652. <script type="Zzzz">nepoznato ili nevažeće pismo</script>
  653. </scripts>
  654. <territories>
  655. <territory type="001">Svijet</territory>
  656. <territory type="002">Afrika</territory>
  657. <territory type="003">Sjevernoamerički kontinent</territory>
  658. <territory type="005">Južna Amerika</territory>
  659. <territory type="009">Oceanija</territory>
  660. <territory type="011">Zapadna Afrika</territory>
  661. <territory type="013">Centralna Amerika</territory>
  662. <territory type="014">Istočna Afrika</territory>
  663. <territory type="015">Sjeverna Afrika</territory>
  664. <territory type="017">Središnja Afrika</territory>
  665. <territory type="018">Južna Afrika</territory>
  666. <territory type="019">Amerike</territory>
  667. <territory type="021">Sjeverna Amerika</territory>
  668. <territory type="029">Karibi</territory>
  669. <territory type="030">Istočna Azija</territory>
  670. <territory type="034">Južna Azija</territory>
  671. <territory type="035">Jugoistočna Azija</territory>
  672. <territory type="039">Južna Europa</territory>
  673. <territory type="053">Australija i Novi Zeland</territory>
  674. <territory type="054">Melanezija</territory>
  675. <territory type="057">Mikronezki oblast</territory>
  676. <territory type="061">Polinezija</territory>
  677. <territory type="062">Južno-centralna Azija</territory>
  678. <territory type="142">Azija</territory>
  679. <territory type="143">Srednja Azija</territory>
  680. <territory type="145">Zapadna Azija</territory>
  681. <territory type="150">Europa</territory>
  682. <territory type="151">Istočna Europa</territory>
  683. <territory type="154">Sjeverna Europa</territory>
  684. <territory type="155">Zapadna Europa</territory>
  685. <territory type="172">Zajednica nezavisnih država</territory>
  686. <territory type="419">Latinska Amerika i Karibi</territory>
  687. <territory type="830">Kanalski otoci</territory>
  688. <territory type="AD">Andora</territory>
  689. <territory type="AE">Ujedinjeni Arapski Emirati</territory>
  690. <territory type="AF">Afganistan</territory>
  691. <territory type="AG">Antigua i Barbuda</territory>
  692. <territory type="AI">Anguila</territory>
  693. <territory type="AL">Albanija</territory>
  694. <territory type="AM">Armenija</territory>
  695. <territory type="AN">Nizozemski Antili</territory>
  696. <territory type="AO">Angola</territory>
  697. <territory type="AQ">Antarktik</territory>
  698. <territory type="AR">Argentina</territory>
  699. <territory type="AS">Američka Samoa</territory>
  700. <territory type="AT">Austrija</territory>
  701. <territory type="AU">Australija</territory>
  702. <territory type="AW">Aruba</territory>
  703. <territory type="AX">Alandski otoci</territory>
  704. <territory type="AZ">Azerbajdžan</territory>
  705. <territory type="BA">Bosna i Hercegovina</territory>
  706. <territory type="BB">Barbados</territory>
  707. <territory type="BD">Bangladeš</territory>
  708. <territory type="BE">Belgija</territory>
  709. <territory type="BF">Burkina Faso</territory>
  710. <territory type="BG">Bugarska</territory>
  711. <territory type="BH">Bahrein</territory>
  712. <territory type="BI">Burundi</territory>
  713. <territory type="BJ">Benin</territory>
  714. <territory type="BL">Sveti Bartolomej</territory>
  715. <territory type="BM">Bermuda</territory>
  716. <territory type="BN">Brunej</territory>
  717. <territory type="BO">Bolivija</territory>
  718. <territory type="BR">Brazil</territory>
  719. <territory type="BS">Bahami</territory>
  720. <territory type="BT">Butan</territory>
  721. <territory type="BV">Otok Bouvet</territory>
  722. <territory type="BW">Bocvana</territory>
  723. <territory type="BY">Bjelorusija</territory>
  724. <territory type="BZ">Belize</territory>
  725. <territory type="CA">Kanada</territory>
  726. <territory type="CC">Kokosovi Otoci</territory>
  727. <territory type="CD">Demokratska Republika Kongo</territory>
  728. <territory type="CF">Srednjoafrička Republika</territory>
  729. <territory type="CG">Kongo</territory>
  730. <territory type="CH">Švicarska</territory>
  731. <territory type="CI">Obala Bjelokosti</territory>
  732. <territory type="CK">Kukovi Otoci</territory>
  733. <territory type="CL">Čile</territory>
  734. <territory type="CM">Kamerun</territory>
  735. <territory type="CN">Kina</territory>
  736. <territory type="CO">Kolumbija</territory>
  737. <territory type="CR">Kostarika</territory>
  738. <territory type="CS">Srbija i Crna Gora</territory>
  739. <territory type="CU">Kuba</territory>
  740. <territory type="CV">Zeleni Rt</territory>
  741. <territory type="CX">Božićni Otok</territory>
  742. <territory type="CY">Cipar</territory>
  743. <territory type="CZ">Češka Republika</territory>
  744. <territory type="DE">Njemačka</territory>
  745. <territory type="DJ">Džibuti</territory>
  746. <territory type="DK">Danska</territory>
  747. <territory type="DM">Dominika</territory>
  748. <territory type="DO">Dominikanska Republika</territory>
  749. <territory type="DZ">Alžir</territory>
  750. <territory type="EC">Ekvador</territory>
  751. <territory type="EE">Estonija</territory>
  752. <territory type="EG">Egipat</territory>
  753. <territory type="EH">Zapadna Sahara</territory>
  754. <territory type="ER">Eritreja</territory>
  755. <territory type="ES">Španjolska</territory>
  756. <territory type="ET">Etiopija</territory>
  757. <territory type="FI">Finska</territory>
  758. <territory type="FJ">Fidži</territory>
  759. <territory type="FK">Falklandski Otoci</territory>
  760. <territory type="FM">Mikronezija</territory>
  761. <territory type="FO">Farski Otoci</territory>
  762. <territory type="FR">Francuska</territory>
  763. <territory type="GA">Gabon</territory>
  764. <territory type="GB">Velika Britanija</territory>
  765. <territory type="GD">Grenada</territory>
  766. <territory type="GE">Gruzija</territory>
  767. <territory type="GF">Francuska Gvajana</territory>
  768. <territory type="GG">Guernsey</territory>
  769. <territory type="GH">Gana</territory>
  770. <territory type="GI">Gibraltar</territory>
  771. <territory type="GL">Grenland</territory>
  772. <territory type="GM">Gambija</territory>
  773. <territory type="GN">Gvineja</territory>
  774. <territory type="GP">Guadeloupe</territory>
  775. <territory type="GQ">Ekvatorska Gvineja</territory>
  776. <territory type="GR">Grčka</territory>
  777. <territory type="GS">Južna Gruzija i Južni Sendvič Otoci</territory>
  778. <territory type="GT">Gvatemala</territory>
  779. <territory type="GU">Guam</territory>
  780. <territory type="GW">Gvineja Bisau</territory>
  781. <territory type="GY">Gvajana</territory>
  782. <territory type="HK">Hong Kong S.A.R. Kine</territory>
  783. <territory type="HM">Otok Heard i Otoci McDonald</territory>
  784. <territory type="HN">Honduras</territory>
  785. <territory type="HR">Hrvatska</territory>
  786. <territory type="HT">Haiti</territory>
  787. <territory type="HU">Mađarska</territory>
  788. <territory type="ID">Indonezija</territory>
  789. <territory type="IE">Irska</territory>
  790. <territory type="IL">Izrael</territory>
  791. <territory type="IM">Otok Man</territory>
  792. <territory type="IN">Indija</territory>
  793. <territory type="IO">Britanski Teritorij Indijskog Oceana</territory>
  794. <territory type="IQ">Irak</territory>
  795. <territory type="IR">Iran</territory>
  796. <territory type="IS">Island</territory>
  797. <territory type="IT">Italija</territory>
  798. <territory type="JE">Jersey</territory>
  799. <territory type="JM">Jamajka</territory>
  800. <territory type="JO">Jordan</territory>
  801. <territory type="JP">Japan</territory>
  802. <territory type="KE">Kenija</territory>
  803. <territory type="KG">Kirgistan</territory>
  804. <territory type="KH">Kambodža</territory>
  805. <territory type="KI">Kiribati</territory>
  806. <territory type="KM">Komori</territory>
  807. <territory type="KN">Sveti Kristofor i Nevis</territory>
  808. <territory type="KP">Koreja, Sjeverna</territory>
  809. <territory type="KR">Južna Koreja</territory>
  810. <territory type="KW">Kuvajt</territory>
  811. <territory type="KY">Kajmanski Otoci</territory>
  812. <territory type="KZ">Kazakstan</territory>
  813. <territory type="LA">Laos</territory>
  814. <territory type="LB">Libanon</territory>
  815. <territory type="LC">Sveta Lucija</territory>
  816. <territory type="LI">Lihtenštajn</territory>
  817. <territory type="LK">Šri Lanka</territory>
  818. <territory type="LR">Liberija</territory>
  819. <territory type="LS">Lesoto</territory>
  820. <territory type="LT">Litva</territory>
  821. <territory type="LU">Luksemburg</territory>
  822. <territory type="LV">Latvija</territory>
  823. <territory type="LY">Libijska Arapska Džamahirija</territory>
  824. <territory type="MA">Maroko</territory>
  825. <territory type="MC">Monako</territory>
  826. <territory type="MD">Moldavija</territory>
  827. <territory type="ME">Crna Gora</territory>
  828. <territory type="MF">Sveti Martin</territory>
  829. <territory type="MG">Madagaskar</territory>
  830. <territory type="MH">Maršalovi Otoci</territory>
  831. <territory type="MK">Bivša Jugoslavenska Republika Makedonija</territory>
  832. <territory type="ML">Mali</territory>
  833. <territory type="MM">Mijanma</territory>
  834. <territory type="MN">Mongolija</territory>
  835. <territory type="MO">Makao S.A.R. Kine</territory>
  836. <territory type="MP">Sjeverni Marijanski Otoci</territory>
  837. <territory type="MQ">Martinik</territory>
  838. <territory type="MR">Mauritanija</territory>
  839. <territory type="MS">Montserat</territory>
  840. <territory type="MT">Malta</territory>
  841. <territory type="MU">Mauricijus</territory>
  842. <territory type="MV">Maldivi</territory>
  843. <territory type="MW">Malavi</territory>
  844. <territory type="MX">Meksiko</territory>
  845. <territory type="MY">Malezija</territory>
  846. <territory type="MZ">Mozambik</territory>
  847. <territory type="NA">Namibija</territory>
  848. <territory type="NC">Nova Kaledonija</territory>
  849. <territory type="NE">Niger</territory>
  850. <territory type="NF">Otok Norfolk</territory>
  851. <territory type="NG">Nigerija</territory>
  852. <territory type="NI">Nikaragva</territory>
  853. <territory type="NL">Nizozemska</territory>
  854. <territory type="NO">Norveška</territory>
  855. <territory type="NP">Nepal</territory>
  856. <territory type="NR">Nauru</territory>
  857. <territory type="NU">Niue</territory>
  858. <territory type="NZ">Novi Zeland</territory>
  859. <territory type="OM">Oman</territory>
  860. <territory type="PA">Panama</territory>
  861. <territory type="PE">Peru</territory>
  862. <territory type="PF">Francuska Polinezija</territory>
  863. <territory type="PG">Papua Nova Gvineja</territory>
  864. <territory type="PH">Filipini</territory>
  865. <territory type="PK">Pakistan</territory>
  866. <territory type="PL">Poljska</territory>
  867. <territory type="PM">Sveti Petar i Miguel</territory>
  868. <territory type="PN">Pitcairn</territory>
  869. <territory type="PR">Portoriko</territory>
  870. <territory type="PS">Palestinsko Područje</territory>
  871. <territory type="PT">Portugal</territory>
  872. <territory type="PW">Palau</territory>
  873. <territory type="PY">Paragvaj</territory>
  874. <territory type="QA">Katar</territory>
  875. <territory type="QO">Ostala oceanija</territory>
  876. <territory type="QU">Europska Unija</territory>
  877. <territory type="RE">Reunion</territory>
  878. <territory type="RO">Rumunjska</territory>
  879. <territory type="RS">Srbija</territory>
  880. <territory type="RU">Rusija</territory>
  881. <territory type="RW">Ruanda</territory>
  882. <territory type="SA">Saudijska Arabija</territory>
  883. <territory type="SB">Solomonski Otoci</territory>
  884. <territory type="SC">Sejšeli</territory>
  885. <territory type="SD">Sudan</territory>
  886. <territory type="SE">Švedska</territory>
  887. <territory type="SG">Singapur</territory>
  888. <territory type="SH">Sveta Helena</territory>
  889. <territory type="SI">Slovenija</territory>
  890. <territory type="SJ">Svalbard i Jan Mayen</territory>
  891. <territory type="SK">Slovačka</territory>
  892. <territory type="SL">Sijera Leone</territory>
  893. <territory type="SM">San Marino</territory>
  894. <territory type="SN">Senegal</territory>
  895. <territory type="SO">Somalija</territory>
  896. <territory type="SR">Surinam</territory>
  897. <territory type="ST">Sveti Toma i Prinsipe</territory>
  898. <territory type="SV">El Salvador</territory>
  899. <territory type="SY">Sirija</territory>
  900. <territory type="SZ">Svazi</territory>
  901. <territory type="TC">Turkski i Kaikos Otoci</territory>
  902. <territory type="TD">Čad</territory>
  903. <territory type="TF">Francuski Južni Teritoriji</territory>
  904. <territory type="TG">Togo</territory>
  905. <territory type="TH">Tajland</territory>
  906. <territory type="TJ">Tadžikistan</territory>
  907. <territory type="TK">Tokelau</territory>
  908. <territory type="TL">Istočni Timor</territory>
  909. <territory type="TM">Turkmenistan</territory>
  910. <territory type="TN">Tunis</territory>
  911. <territory type="TO">Tonga</territory>
  912. <territory type="TR">Turska</territory>
  913. <territory type="TT">Trinidad i Tobago</territory>
  914. <territory type="TV">Tuvalu</territory>
  915. <territory type="TW">Tajvan</territory>
  916. <territory type="TZ">Tanzanija</territory>
  917. <territory type="UA">Ukrajina</territory>
  918. <territory type="UG">Uganda</territory>
  919. <territory type="UM">Ujedinjene Države Manjih Pacifičkih Otoka</territory>
  920. <territory type="US">Sjedinjene Države</territory>
  921. <territory type="UY">Urugvaj</territory>
  922. <territory type="UZ">Uzbekistan</territory>
  923. <territory type="VA">Grad Vatikan</territory>
  924. <territory type="VC">Sveti Vincent i Grenadini</territory>
  925. <territory type="VE">Venezuela</territory>
  926. <territory type="VG">Britanski Djevičanski Otoci</territory>
  927. <territory type="VI">Američki Djevičanski Otoci</territory>
  928. <territory type="VN">Vijetnam</territory>
  929. <territory type="VU">Vanuatu</territory>
  930. <territory type="WF">Wallis i Futuna</territory>
  931. <territory type="WS">Samoa</territory>
  932. <territory type="YE">Jemen</territory>
  933. <territory type="YT">Majote</territory>
  934. <territory type="ZA">Južnoafrička Republika</territory>
  935. <territory type="ZM">Zambija</territory>
  936. <territory type="ZW">Zimbabve</territory>
  937. <territory type="ZZ">nepoznata ili nevažeća oblast</territory>
  938. </territories>
  939. <variants>
  940. <variant type="1901">tradicionalan njemački pravopis</variant>
  941. <variant type="1994">standardizirani resian pravopis</variant>
  942. <variant type="1996">njemačka ortografija iz 1996.</variant>
  943. <variant type="1606NICT">kasni srednjofrancuski do 1606.</variant>
  944. <variant type="1694ACAD">rani moderni francuski</variant>
  945. <variant type="AREVELA">istočno-armenijski</variant>
  946. <variant type="AREVMDA">zapadno-armenijski</variant>
  947. <variant type="BAKU1926">unificirana turska abeceda</variant>
  948. <variant type="BISKE">san giorgio/bila dijalekt</variant>
  949. <variant type="BOONT">boontling</variant>
  950. <variant type="FONIPA">IPA fonetika</variant>
  951. <variant type="FONUPA">UPA fonetika</variant>
  952. <variant type="LIPAW">lipovački dijalekt resian jezika</variant>
  953. <variant type="MONOTON">monotono</variant>
  954. <variant type="NEDIS">natisone dijalekt</variant>
  955. <variant type="NJIVA">Gniva/Njiva dijalekt</variant>
  956. <variant type="OSOJS">oseacco/osojane dijalekt</variant>
  957. <variant type="POLYTON">politono</variant>
  958. <variant type="POSIX">računalo</variant>
  959. <variant type="REVISED">izmijenjen pravopis</variant>
  960. <variant type="ROZAJ">resian</variant>
  961. <variant type="SAAHO">saho</variant>
  962. <variant type="SCOTLAND">škotski standardni engleski</variant>
  963. <variant type="SCOUSE">scouse</variant>
  964. <variant type="SOLBA">stolvizza/solbica dijalekt</variant>
  965. <variant type="TARASK">taraskievica pravopis</variant>
  966. <variant type="VALENCIA">valencijski</variant>
  967. </variants>
  968. <keys>
  969. <key type="calendar">kalendar</key>
  970. <key type="collation">poredavanje</key>
  971. <key type="currency">valuta</key>
  972. </keys>
  973. <types>
  974. <type type="big5han" key="collation">tradicionalno kinesko poredavanje - Big5</type>
  975. <type type="buddhist" key="calendar">budistički kalendar</type>
  976. <type type="chinese" key="calendar">kineski kalendar</type>
  977. <type type="direct" key="collation">izravno poredavanje</type>
  978. <type type="gb2312han" key="collation">pojednostavljeno kinesko poredavanje - GB2312</type>
  979. <type type="gregorian" key="calendar">gregorijanski kalendar</type>
  980. <type type="hebrew" key="calendar">hebrejski kalendar</type>
  981. <type type="indian" key="calendar">indijski nacionalni kalendar</type>
  982. <type type="islamic" key="calendar">islamski kalendar</type>
  983. <type type="islamic-civil" key="calendar">islamski civilni kalendar</type>
  984. <type type="japanese" key="calendar">japanski kalendar</type>
  985. <type type="phonebook" key="collation">poredavanje po abecedi</type>
  986. <type type="pinyin" key="collation">Pinyin poredavanje</type>
  987. <type type="roc" key="calendar">kalendar Republike Kine</type>
  988. <type type="stroke" key="collation">Stroke order poredavanje</type>
  989. <type type="traditional" key="collation">tradicionalno predavanje</type>
  990. </types>
  991. <measurementSystemNames>
  992. <measurementSystemName type="US">američki sustav</measurementSystemName>
  993. <measurementSystemName type="metric">metrički</measurementSystemName>
  994. </measurementSystemNames>
  995. </localeDisplayNames>
  996. <layout>
  997. <inList>titlecase-firstword</inList>
  998. <inText type="currency">titlecase-firstword</inText>
  999. <inText type="fields">titlecase-firstword</inText>
  1000. <inText type="keys">titlecase-firstword</inText>
  1001. <inText type="languages">lowercase-words</inText>
  1002. <inText type="long">titlecase-firstword</inText>
  1003. <inText type="measurementSystemNames">titlecase-firstword</inText>
  1004. <inText type="quarterWidth">titlecase-firstword</inText>
  1005. <inText type="scripts">lowercase-words</inText>
  1006. <inText type="territories">titlecase-words</inText>
  1007. <inText type="types">titlecase-firstword</inText>
  1008. <inText type="variants">titlecase-firstword</inText>
  1009. </layout>
  1010. <characters>
  1011. <exemplarCharacters>[a-c č ć d đ {dž} e-l {lj} m n {nj} o p r s š t-v z ž]</exemplarCharacters>
  1012. <exemplarCharacters type="auxiliary">[q w-y]</exemplarCharacters>
  1013. <exemplarCharacters type="currencySymbol">[a-z]</exemplarCharacters>
  1014. </characters>
  1015. <delimiters>
  1016. <quotationStart>‘</quotationStart>
  1017. <quotationEnd>’</quotationEnd>
  1018. <alternateQuotationStart>“</alternateQuotationStart>
  1019. <alternateQuotationEnd>”</alternateQuotationEnd>
  1020. </delimiters>
  1021. <dates>
  1022. <calendars>
  1023. <calendar type="buddhist">
  1024. <dateFormats>
  1025. <dateFormatLength type="full">
  1026. <dateFormat>
  1027. <pattern>EEEE, d. MMMM y. G</pattern>
  1028. </dateFormat>
  1029. </dateFormatLength>
  1030. <dateFormatLength type="long">
  1031. <dateFormat>
  1032. <pattern>d. MMMM y. BE</pattern>
  1033. </dateFormat>
  1034. </dateFormatLength>
  1035. <dateFormatLength type="medium">
  1036. <dateFormat>
  1037. <pattern>d.MMM.y. G</pattern>
  1038. </dateFormat>
  1039. </dateFormatLength>
  1040. <dateFormatLength type="short">
  1041. <dateFormat>
  1042. <pattern>d.M.yyyy.</pattern>
  1043. </dateFormat>
  1044. </dateFormatLength>
  1045. </dateFormats>
  1046. </calendar>
  1047. <calendar type="chinese">
  1048. <dateFormats>
  1049. <dateFormatLength type="full">
  1050. <dateFormat>
  1051. <pattern>EEE, d.Ml.y. G</pattern>
  1052. </dateFormat>
  1053. </dateFormatLength>
  1054. <dateFormatLength type="long">
  1055. <dateFormat>
  1056. <pattern>d.Ml.y. G</pattern>
  1057. </dateFormat>
  1058. </dateFormatLength>
  1059. <dateFormatLength type="medium">
  1060. <dateFormat>
  1061. <pattern>d.Ml.y. G</pattern>
  1062. </dateFormat>
  1063. </dateFormatLength>
  1064. <dateFormatLength type="short">
  1065. <dateFormat>
  1066. <pattern>d.Ml.y. G</pattern>
  1067. </dateFormat>
  1068. </dateFormatLength>
  1069. </dateFormats>
  1070. </calendar>
  1071. <calendar type="gregorian">
  1072. <months>
  1073. <monthContext type="format">
  1074. <monthWidth type="abbreviated">
  1075. <month type="1">01.</month>
  1076. <month type="2">02.</month>
  1077. <month type="3">03.</month>
  1078. <month type="4">04.</month>
  1079. <month type="5">05.</month>
  1080. <month type="6">06.</month>
  1081. <month type="7">07.</month>
  1082. <month type="8">08.</month>
  1083. <month type="9">09.</month>
  1084. <month type="10">10.</month>
  1085. <month type="11">11.</month>
  1086. <month type="12">12.</month>
  1087. </monthWidth>
  1088. <monthWidth type="wide">
  1089. <month type="1">siječnja</month>
  1090. <month type="2">veljače</month>
  1091. <month type="3">ožujka</month>
  1092. <month type="4">travnja</month>
  1093. <month type="5">svibnja</month>
  1094. <month type="6">lipnja</month>
  1095. <month type="7">srpnja</month>
  1096. <month type="8">kolovoza</month>
  1097. <month type="9">rujna</month>
  1098. <month type="10">listopada</month>
  1099. <month type="11">studenoga</month>
  1100. <month type="12">prosinca</month>
  1101. </monthWidth>
  1102. </monthContext>
  1103. <monthContext type="stand-alone">
  1104. <monthWidth type="narrow">
  1105. <month type="1">1.</month>
  1106. <month type="2">2.</month>
  1107. <month type="3">3.</month>
  1108. <month type="4">4.</month>
  1109. <month type="5">5.</month>
  1110. <month type="6">6.</month>
  1111. <month type="7">7.</month>
  1112. <month type="8">8.</month>
  1113. <month type="9">9.</month>
  1114. <month type="10">10.</month>
  1115. <month type="11">11.</month>
  1116. <month type="12">12.</month>
  1117. </monthWidth>
  1118. <monthWidth type="wide">
  1119. <month type="1">siječanj</month>
  1120. <month type="2">veljača</month>
  1121. <month type="3">ožujak</month>
  1122. <month type="4">travanj</month>
  1123. <month type="5">svibanj</month>
  1124. <month type="6">lipanj</month>
  1125. <month type="7">srpanj</month>
  1126. <month type="8">kolovoz</month>
  1127. <month type="9">rujan</month>
  1128. <month type="10">listopad</month>
  1129. <month type="11">studeni</month>
  1130. <month type="12">prosinac</month>
  1131. </monthWidth>
  1132. </monthContext>
  1133. </months>
  1134. <days>
  1135. <dayContext type="format">
  1136. <dayWidth type="abbreviated">
  1137. <day type="sun">ned</day>
  1138. <day type="mon">pon</day>
  1139. <day type="tue">uto</day>
  1140. <day type="wed">sri</day>
  1141. <day type="thu">čet</day>
  1142. <day type="fri">pet</day>
  1143. <day type="sat">sub</day>
  1144. </dayWidth>
  1145. <dayWidth type="wide">
  1146. <day type="sun">nedjelja</day>
  1147. <day type="mon">ponedjeljak</day>
  1148. <day type="tue">utorak</day>
  1149. <day type="wed">srijeda</day>
  1150. <day type="thu">četvrtak</day>
  1151. <day type="fri">petak</day>
  1152. <day type="sat">subota</day>
  1153. </dayWidth>
  1154. </dayContext>
  1155. <dayContext type="stand-alone">
  1156. <dayWidth type="narrow">
  1157. <day type="sun">n</day>
  1158. <day type="mon">p</day>
  1159. <day type="tue">u</day>
  1160. <day type="wed">s</day>
  1161. <day type="thu">č</day>
  1162. <day type="fri">p</day>
  1163. <day type="sat">s</day>
  1164. </dayWidth>
  1165. </dayContext>
  1166. </days>
  1167. <quarters>
  1168. <quarterContext type="format">
  1169. <quarterWidth type="abbreviated">
  1170. <quarter type="1">1kv</quarter>
  1171. <quarter type="2">2kv</quarter>
  1172. <quarter type="3">3kv</quarter>
  1173. <quarter type="4">4kv</quarter>
  1174. </quarterWidth>
  1175. <quarterWidth type="wide">
  1176. <quarter type="1">1. kvartal</quarter>
  1177. <quarter type="2">2. kvartal</quarter>
  1178. <quarter type="3">3. kvartal</quarter>
  1179. <quarter type="4">4. kvartal</quarter>
  1180. </quarterWidth>
  1181. </quarterContext>
  1182. </quarters>
  1183. <eras>
  1184. <eraNames>
  1185. <era type="0">Prije Krista</era>
  1186. <era type="1">Poslije Krista</era>
  1187. </eraNames>
  1188. <eraAbbr>
  1189. <era type="0">pr.n.e.</era>
  1190. <era type="1">AD</era>
  1191. </eraAbbr>
  1192. </eras>
  1193. <dateFormats>
  1194. <dateFormatLength type="full">
  1195. <dateFormat>
  1196. <pattern>EEEE, d. MMMM y.</pattern>
  1197. </dateFormat>
  1198. </dateFormatLength>
  1199. <dateFormatLength type="long">
  1200. <dateFormat>
  1201. <pattern>d. MMMM y.</pattern>
  1202. </dateFormat>
  1203. </dateFormatLength>
  1204. <dateFormatLength type="medium">
  1205. <dateFormat>
  1206. <pattern>d.M.yyyy.</pattern>
  1207. </dateFormat>
  1208. </dateFormatLength>
  1209. <dateFormatLength type="short">
  1210. <dateFormat>
  1211. <pattern>dd.MM.yyyy.</pattern>
  1212. </dateFormat>
  1213. </dateFormatLength>
  1214. </dateFormats>
  1215. <timeFormats>
  1216. <timeFormatLength type="full">
  1217. <timeFormat>
  1218. <pattern>HH:mm:ss zzzz</pattern>
  1219. </timeFormat>
  1220. </timeFormatLength>
  1221. <timeFormatLength type="long">
  1222. <timeFormat>
  1223. <pattern>HH:mm:ss z</pattern>
  1224. </timeFormat>
  1225. </timeFormatLength>
  1226. <timeFormatLength type="medium">
  1227. <timeFormat>
  1228. <pattern>HH:mm:ss</pattern>
  1229. </timeFormat>
  1230. </timeFormatLength>
  1231. <timeFormatLength type="short">
  1232. <timeFormat>
  1233. <pattern>HH:mm</pattern>
  1234. </timeFormat>
  1235. </timeFormatLength>
  1236. </timeFormats>
  1237. <dateTimeFormats>
  1238. <availableFormats>
  1239. <dateFormatItem id="EEEd">EEE, d.</dateFormatItem>
  1240. <dateFormatItem id="HHmm">HH:mm</dateFormatItem>
  1241. <dateFormatItem id="HHmmss">HH:mm:ss</dateFormatItem>
  1242. <dateFormatItem id="Hm">H:mm</dateFormatItem>
  1243. <dateFormatItem id="M">L.</dateFormatItem>
  1244. <dateFormatItem id="MEd">E, d.M.</dateFormatItem>
  1245. <dateFormatItem id="MMM">LLL.</dateFormatItem>
  1246. <dateFormatItem id="MMMEd">E, d.MMM.</dateFormatItem>
  1247. <dateFormatItem id="MMMMEd">E, d. MMMM</dateFormatItem>
  1248. <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
  1249. <dateFormatItem id="MMMMdd">dd. MMMM</dateFormatItem>
  1250. <dateFormatItem id="MMMd">d.MMM.</dateFormatItem>
  1251. <dateFormatItem id="MMdd">dd.MM.</dateFormatItem>
  1252. <dateFormatItem id="Md">d.M.</dateFormatItem>
  1253. <dateFormatItem id="d">d.</dateFormatItem>
  1254. <dateFormatItem id="hhmm">hh:mm a</dateFormatItem>
  1255. <dateFormatItem id="hhmmss">hh:mm:ss a</dateFormatItem>
  1256. <dateFormatItem id="ms">mm:ss</dateFormatItem>
  1257. <dateFormatItem id="y">y.</dateFormatItem>
  1258. <dateFormatItem id="yM">M.yyyy.</dateFormatItem>
  1259. <dateFormatItem id="yMEd">EEE, d.M.y.</dateFormatItem>
  1260. <dateFormatItem id="yMMM">MMM.y.</dateFormatItem>
  1261. <dateFormatItem id="yMMMEd">EEE, d.MMM.y.</dateFormatItem>
  1262. <dateFormatItem id="yMMMM">MMMM y.</dateFormatItem>
  1263. <dateFormatItem id="yQ">Q. yyyy.</dateFormatItem>
  1264. <dateFormatItem id="yQQQ">QQQ y.</dateFormatItem>
  1265. <dateFormatItem id="yyMMMEEEd">EEE, d.MMM.yy.</dateFormatItem>
  1266. <dateFormatItem id="yyQ">Q yy.</dateFormatItem>
  1267. <dateFormatItem id="yyQQQQ">QQQQ yy.</dateFormatItem>
  1268. <dateFormatItem id="yyyyMM">MM.yyyy.</dateFormatItem>
  1269. <dateFormatItem id="yyyyMMMM">MMMM y.</dateFormatItem>
  1270. </availableFormats>
  1271. <intervalFormats>
  1272. <intervalFormatFallback>{0} - {1}</intervalFormatFallback>
  1273. <intervalFormatItem id="M">
  1274. <greatestDifference id="M">MM. - MM.</greatestDifference>
  1275. </intervalFormatItem>
  1276. <intervalFormatItem id="MEd">
  1277. <greatestDifference id="M">E, dd.MM. - E, dd.MM.</greatestDifference>
  1278. <greatestDifference id="d">E, dd.MM. - E, dd.MM.</greatestDifference>
  1279. </intervalFormatItem>
  1280. <intervalFormatItem id="MMM">
  1281. <greatestDifference id="M">LLL.-LLL.</greatestDifference>
  1282. </intervalFormatItem>
  1283. <intervalFormatItem id="MMMEd">
  1284. <greatestDifference id="M">E, dd.MMM. - E, dd.MMM.</greatestDifference>
  1285. <greatestDifference id="d">E, dd. - E, dd. MMM.</greatestDifference>
  1286. </intervalFormatItem>
  1287. <intervalFormatItem id="MMMM">
  1288. <greatestDifference id="M">LLLL-LLLL</greatestDifference>
  1289. </intervalFormatItem>
  1290. <intervalFormatItem id="MMMd">
  1291. <greatestDifference id="M">dd.MMM. - dd.MMM.</greatestDifference>
  1292. <greatestDifference id="d">dd. - dd.MMM.</greatestDifference>
  1293. </intervalFormatItem>
  1294. <intervalFormatItem id="Md">
  1295. <greatestDifference id="M">dd.MM. - dd.MM.</greatestDifference>
  1296. <greatestDifference id="d">dd.MM. - dd.MM.</greatestDifference>
  1297. </intervalFormatItem>
  1298. <intervalFormatItem id="d">
  1299. <greatestDifference id="d">dd. - dd.</greatestDifference>
  1300. </intervalFormatItem>
  1301. <intervalFormatItem id="h">
  1302. <greatestDifference id="a">HH - HH'h'</greatestDifference>
  1303. <greatestDifference id="h">HH - HH'h'</greatestDifference>
  1304. </intervalFormatItem>
  1305. <intervalFormatItem id="hm">
  1306. <greatestDifference id="a">HH:mm-HH:mm</greatestDifference>
  1307. <greatestDifference id="h">HH:mm-HH:mm</greatestDifference>
  1308. <greatestDifference id="m">HH:mm-HH:mm</greatestDifference>
  1309. </intervalFormatItem>
  1310. <intervalFormatItem id="hmv">
  1311. <greatestDifference id="a">HH:mm-HH:mm v</greatestDifference>
  1312. <greatestDifference id="h">HH:mm-HH:mm v</greatestDifference>
  1313. <greatestDifference id="m">HH:mm-HH:mm v</greatestDifference>
  1314. </intervalFormatItem>
  1315. <intervalFormatItem id="hv">
  1316. <greatestDifference id="a">HH - HH 'h' v</greatestDifference>
  1317. <greatestDifference id="h">HH - HH 'h' v</greatestDifference>
  1318. </intervalFormatItem>
  1319. <intervalFormatItem id="y">
  1320. <greatestDifference id="y">y. - y.</greatestDifference>
  1321. </intervalFormatItem>
  1322. <intervalFormatItem id="yM">
  1323. <greatestDifference id="M">MM.yyyy. - MM.yyyy.</greatestDifference>
  1324. <greatestDifference id="y">MM.yyyy. - MM.yyyy.</greatestDifference>
  1325. </intervalFormatItem>
  1326. <intervalFormatItem id="yMEd">
  1327. <greatestDifference id="M">E, dd.MM.yyyy. - E, dd.MM.yyyy.</greatestDifference>
  1328. <greatestDifference id="d">E, dd.MM.yyyy. - E, dd.MM.yyyy.</greatestDifference>
  1329. <greatestDifference id="y">E, dd.MM.yyyy. - E, dd.MM.yyyy.</greatestDifference>
  1330. </intervalFormatItem>
  1331. <intervalFormatItem id="yMMM">
  1332. <greatestDifference id="M">LLL.-LLL.y.</greatestDifference>
  1333. <greatestDifference id="y">LLL.y. - LLL.y.</greatestDifference>
  1334. </intervalFormatItem>
  1335. <intervalFormatItem id="yMMMEd">
  1336. <greatestDifference id="M">E, dd.MMM. - E, dd.MMM.y.</greatestDifference>
  1337. <greatestDifference id="d">E, dd. - E, dd.MMM.y.</greatestDifference>
  1338. <greatestDifference id="y">E, dd.MMM.y. - E, dd.MMM.y.</greatestDifference>
  1339. </intervalFormatItem>
  1340. <intervalFormatItem id="yMMMM">
  1341. <greatestDifference id="M">MM. - MM.yyyy.</greatestDifference>
  1342. <greatestDifference id="y">MM.yyyy. - MM.yyyy.</greatestDifference>
  1343. </intervalFormatItem>
  1344. <intervalFormatItem id="yMMMd">
  1345. <greatestDifference id="M">dd.MMM. - dd.MMM.y.</greatestDifference>
  1346. <greatestDifference id="d">dd. - dd.MMM.y.</greatestDifference>
  1347. <greatestDifference id="y">dd.MMM.y. - dd.MMM.y.</greatestDifference>
  1348. </intervalFormatItem>
  1349. <intervalFormatItem id="yMd">
  1350. <greatestDifference id="M">dd.MM.yyyy. - dd.MM.yyyy.</greatestDifference>
  1351. <greatestDifference id="d">dd.MM.yyyy. - dd.MM.yyyy.</greatestDifference>
  1352. <greatestDifference id="y">dd.MM.yyyy. - dd.MM.yyyy.</greatestDifference>
  1353. </intervalFormatItem>
  1354. </intervalFormats>
  1355. </dateTimeFormats>
  1356. <fields>
  1357. <field type="era">
  1358. <displayName>era</displayName>
  1359. </field>
  1360. <field type="year">
  1361. <displayName>godina</displayName>
  1362. </field>
  1363. <field type="month">
  1364. <displayName>mjesec</displayName>
  1365. </field>
  1366. <field type="week">
  1367. <displayName>tjedan</displayName>
  1368. </field>
  1369. <field type="day">
  1370. <displayName>dan</displayName>
  1371. <relative type="-3">prije tri dana</relative>
  1372. <relative type="-2">prekjučer</relative>
  1373. <relative type="-1">jučer</relative>
  1374. <relative type="0">danas</relative>
  1375. <relative type="1">sutra</relative>
  1376. <relative type="2">prekosutra</relative>
  1377. <relative type="3">za tri dana</relative>
  1378. </field>
  1379. <field type="weekday">
  1380. <displayName>dan u tjednu</displayName>
  1381. </field>
  1382. <field type="dayperiod">
  1383. <displayName>dio dana</displayName>
  1384. </field>
  1385. <field type="hour">
  1386. <displayName>sat</displayName>
  1387. </field>
  1388. <field type="minute">
  1389. <displayName>minuta</displayName>
  1390. </field>
  1391. <field type="second">
  1392. <displayName>sekunda</displayName>
  1393. </field>
  1394. <field type="zone">
  1395. <displayName>zona</displayName>
  1396. </field>
  1397. </fields>
  1398. </calendar>
  1399. <calendar type="japanese">
  1400. <dateFormats>
  1401. <dateFormatLength type="full">
  1402. <dateFormat>
  1403. <pattern>EEEE, d. MMMM y. G</pattern>
  1404. </dateFormat>
  1405. </dateFormatLength>
  1406. <dateFormatLength type="long">
  1407. <dateFormat>
  1408. <pattern>d. MMMM y. G</pattern>
  1409. </dateFormat>
  1410. </dateFormatLength>
  1411. <dateFormatLength type="medium">
  1412. <dateFormat>
  1413. <pattern>d.MMM.y. G</pattern>
  1414. </dateFormat>
  1415. </dateFormatLength>
  1416. <dateFormatLength type="short">
  1417. <dateFormat>
  1418. <pattern>d.M.yy. G</pattern>
  1419. </dateFormat>
  1420. </dateFormatLength>
  1421. </dateFormats>
  1422. <dateTimeFormats>
  1423. <availableFormats>
  1424. <dateFormatItem id="Ed">E, d.</dateFormatItem>
  1425. <dateFormatItem id="MMMEd">E, d.MMM.</dateFormatItem>
  1426. <dateFormatItem id="MMMMd">d. MMMM</dateFormatItem>
  1427. <dateFormatItem id="Md">d.M.</dateFormatItem>
  1428. <dateFormatItem id="yyyy">yy. GGG</dateFormatItem>
  1429. <dateFormatItem id="yyyyM">MM.yy. GGGGG</dateFormatItem>
  1430. <dateFormatItem id="yyyyMMM">MMM.yy. GGGGG</dateFormatItem>
  1431. <dateFormatItem id="yyyyQ">Q. yy. GGGGG</dateFormatItem>
  1432. </availableFormats>
  1433. </dateTimeFormats>
  1434. </calendar>
  1435. <calendar type="roc">
  1436. <eras>
  1437. <eraAbbr>
  1438. <era type="0">prije R.O.C.</era>
  1439. <era type="1">R.O.C.</era>
  1440. </eraAbbr>
  1441. </eras>
  1442. <dateFormats>
  1443. <dateFormatLength type="full">
  1444. <dateFormat>
  1445. <pattern>EEEE, d. MMMM y. G</pattern>
  1446. </dateFormat>
  1447. </dateFormatLength>
  1448. <dateFormatLength type="long">
  1449. <dateFormat>
  1450. <pattern>d. MMMM y. G</pattern>
  1451. </dateFormat>
  1452. </dateFormatLength>
  1453. <dateFormatLength type="medium">
  1454. <dateFormat>
  1455. <pattern>d.MMM.y. G</pattern>
  1456. </dateFormat>
  1457. </dateFormatLength>
  1458. <dateFormatLength type="short">
  1459. <dateFormat>
  1460. <pattern>d.M.y.G</pattern>
  1461. </dateFormat>
  1462. </dateFormatLength>
  1463. </dateFormats>
  1464. <dateTimeFormats>
  1465. <availableFormats>
  1466. <dateFormatItem id="yyyy">y. G</dateFormatItem>
  1467. <dateFormatItem id="yyyyM">M.y. G</dateFormatItem>
  1468. <dateFormatItem id="yyyyMEd">EEE, d.M.y. G</dateFormatItem>
  1469. <dateFormatItem id="yyyyMMM">MMM.y. G</dateFormatItem>
  1470. <dateFormatItem id="yyyyMMMEd">EEE, d.MMM.y. G</dateFormatItem>
  1471. <dateFormatItem id="yyyyQ">Q. y. G</dateFormatItem>
  1472. <dateFormatItem id="yyyyQQQ">QQQ y. G</dateFormatItem>
  1473. </availableFormats>
  1474. </dateTimeFormats>
  1475. </calendar>
  1476. </calendars>
  1477. <timeZoneNames>
  1478. <hourFormat>+HHmm;-HHmm</hourFormat>
  1479. <gmtFormat>GMT{0}</gmtFormat>
  1480. <regionFormat>{0}</regionFormat>
  1481. <zone type="Etc/Unknown">
  1482. <exemplarCity>Nepoznat ili nevažeći grad</exemplarCity>
  1483. </zone>
  1484. <zone type="Europe/Andorra">
  1485. <exemplarCity>Andora</exemplarCity>
  1486. </zone>
  1487. <zone type="Antarctica/South_Pole">
  1488. <exemplarCity>Južni pol</exemplarCity>
  1489. </zone>
  1490. <zone type="Antarctica/DumontDUrville">
  1491. <exemplarCity>Dumont D'Urville</exemplarCity>
  1492. </zone>
  1493. <zone type="Europe/Vienna">
  1494. <exemplarCity>Beć</exemplarCity>
  1495. </zone>
  1496. <zone type="Europe/Sofia">
  1497. <exemplarCity>Sofija</exemplarCity>
  1498. </zone>
  1499. <zone type="Asia/Bahrain">
  1500. <exemplarCity>Bahrein</exemplarCity>
  1501. </zone>
  1502. <zone type="Africa/Kinshasa">
  1503. <exemplarCity>Kinšasa</exemplarCity>
  1504. </zone>
  1505. <zone type="Africa/Lubumbashi">
  1506. <exemplarCity>Lubumbaši</exemplarCity>
  1507. </zone>
  1508. <zone type="Pacific/Easter">
  1509. <exemplarCity>Uskrsni Otok</exemplarCity>
  1510. </zone>
  1511. <zone type="Asia/Shanghai">
  1512. <exemplarCity>Šangaj</exemplarCity>
  1513. </zone>
  1514. <zone type="America/Costa_Rica">
  1515. <exemplarCity>Kostarika</exemplarCity>
  1516. </zone>
  1517. <zone type="Atlantic/Cape_Verde">
  1518. <exemplarCity>Zelenortska Republika</exemplarCity>
  1519. </zone>
  1520. <zone type="Indian/Christmas">
  1521. <exemplarCity>Božić</exemplarCity>
  1522. </zone>
  1523. <zone type="Asia/Nicosia">
  1524. <exemplarCity>Nikozija</exemplarCity>
  1525. </zone>
  1526. <zone type="Africa/Djibouti">
  1527. <exemplarCity>Džibuti</exemplarCity>
  1528. </zone>
  1529. <zone type="America/Dominica">
  1530. <exemplarCity>Dominika</exemplarCity>
  1531. </zone>
  1532. <zone type="Africa/Algiers">
  1533. <exemplarCity>Alžir</exemplarCity>
  1534. </zone>
  1535. <zone type="Atlantic/Canary">
  1536. <exemplarCity>Kanarska Otočja</exemplarCity>
  1537. </zone>
  1538. <zone type="Pacific/Fiji">
  1539. <exemplarCity>Fidži</exemplarCity>
  1540. </zone>
  1541. <zone type="Europe/Paris">
  1542. <exemplarCity>Pariz</exemplarCity>
  1543. </zone>
  1544. <zone type="Europe/Athens">
  1545. <exemplarCity>Atena</exemplarCity>
  1546. </zone>
  1547. <zone type="Atlantic/South_Georgia">
  1548. <exemplarCity>Južna Georgia</exemplarCity>
  1549. </zone>
  1550. <zone type="America/Guatemala">
  1551. <exemplarCity>Gvatemala</exemplarCity>
  1552. </zone>
  1553. <zone type="America/Guyana">
  1554. <exemplarCity>Gvajana</exemplarCity>
  1555. </zone>
  1556. <zone type="Europe/Budapest">
  1557. <exemplarCity>Budimpešta</exemplarCity>
  1558. </zone>
  1559. <zone type="Europe/Rome">
  1560. <exemplarCity>Rim</exemplarCity>
  1561. </zone>
  1562. <zone type="America/Jamaica">
  1563. <exemplarCity>Jamajka</exemplarCity>
  1564. </zone>
  1565. <zone type="Asia/Tokyo">
  1566. <exemplarCity>Tokio</exemplarCity>
  1567. </zone>
  1568. <zone type="America/St_Kitts">
  1569. <exemplarCity>St. Kitts</exemplarCity>
  1570. </zone>
  1571. <zone type="Asia/Kuwait">
  1572. <exemplarCity>Kuvajt</exemplarCity>
  1573. </zone>
  1574. <zone type="America/St_Lucia">
  1575. <exemplarCity>Sveta Lucija</exemplarCity>
  1576. </zone>
  1577. <zone type="Europe/Luxembourg">
  1578. <exemplarCity>Luksemburg</exemplarCity>
  1579. </zone>
  1580. <zone type="Europe/Monaco">
  1581. <exemplarCity>Monako</exemplarCity>
  1582. </zone>
  1583. <zone type="Indian/Mauritius">
  1584. <exemplarCity>Mauricijus</exemplarCity>
  1585. </zone>
  1586. <zone type="Indian/Maldives">
  1587. <exemplarCity>Maldivi</exemplarCity>
  1588. </zone>
  1589. <zone type="Europe/Warsaw">
  1590. <exemplarCity>Varšava</exemplarCity>
  1591. </zone>
  1592. <zone type="America/Puerto_Rico">
  1593. <exemplarCity>Portoriko</exemplarCity>
  1594. </zone>
  1595. <zone type="Atlantic/Azores">
  1596. <exemplarCity>Azorski otoci</exemplarCity>
  1597. </zone>
  1598. <zone type="Europe/Lisbon">
  1599. <exemplarCity>Lisabon</exemplarCity>
  1600. </zone>
  1601. <zone type="Asia/Qatar">
  1602. <exemplarCity>Katar</exemplarCity>
  1603. </zone>
  1604. <zone type="Indian/Reunion">
  1605. <exemplarCity>Réunion</exemplarCity>
  1606. </zone>
  1607. <zone type="Europe/Bucharest">
  1608. <exemplarCity>Bukurešt</exemplarCity>
  1609. </zone>
  1610. <zone type="Europe/Kaliningrad">
  1611. <exemplarCity>Kalinjingrad</exemplarCity>
  1612. </zone>
  1613. <zone type="Europe/Moscow">
  1614. <exemplarCity>Moskva</exemplarCity>
  1615. </zone>
  1616. <zone type="Asia/Krasnoyarsk">
  1617. <exemplarCity>Krasnojarsk</exemplarCity>
  1618. </zone>
  1619. <zone type="Asia/Kamchatka">
  1620. <exemplarCity>Kamčatka</exemplarCity>
  1621. </zone>
  1622. <zone type="Asia/Anadyr">
  1623. <exemplarCity>Anadir</exemplarCity>
  1624. </zone>
  1625. <zone type="Asia/Singapore">
  1626. <exemplarCity>Singapur</exemplarCity>
  1627. </zone>
  1628. <zone type="Atlantic/St_Helena">
  1629. <exemplarCity>Sveta Helena</exemplarCity>
  1630. </zone>
  1631. <zone type="America/El_Salvador">
  1632. <exemplarCity>Salvador</exemplarCity>
  1633. </zone>
  1634. <zone type="Europe/Uzhgorod">
  1635. <exemplarCity>Uzgorod</exemplarCity>
  1636. </zone>
  1637. <zone type="Europe/Kiev">
  1638. <exemplarCity>Kijev</exemplarCity>
  1639. </zone>
  1640. <zone type="Europe/Zaporozhye">
  1641. <exemplarCity>Zaporožje</exemplarCity>
  1642. </zone>
  1643. <zone type="America/Anchorage">
  1644. <exemplarCity>Alaska vremenska zona</exemplarCity>
  1645. </zone>
  1646. <zone type="America/North_Dakota/New_Salem">
  1647. <exemplarCity>New Salem, Sjeverna Dakota</exemplarCity>
  1648. </zone>
  1649. <zone type="America/North_Dakota/Center">
  1650. <exemplarCity>Središnja, Sjeverna Dakota</exemplarCity>
  1651. </zone>
  1652. <zone type="Asia/Tashkent">
  1653. <exemplarCity>Taškent</exemplarCity>
  1654. </zone>
  1655. <zone type="America/St_Vincent">
  1656. <exemplarCity>Sveti Vincent</exemplarCity>
  1657. </zone>
  1658. <zone type="America/St_Thomas">
  1659. <exemplarCity>Sveti Thomas</exemplarCity>
  1660. </zone>
  1661. <metazone type="Acre">
  1662. <long>
  1663. <daylight>Acre ljetno vrijeme</daylight>
  1664. </long>
  1665. </metazone>
  1666. <metazone type="Africa_Central">
  1667. <long>
  1668. <standard>Središnja Afrika</standard>
  1669. </long>
  1670. </metazone>
  1671. <metazone type="Africa_Eastern">
  1672. <long>
  1673. <standard>Istočna Afrika</standard>
  1674. </long>
  1675. </metazone>
  1676. <metazone type="Africa_Southern">
  1677. <long>
  1678. <standard>Južna Afrika</standard>
  1679. </long>
  1680. </metazone>
  1681. <metazone type="Africa_Western">
  1682. <long>
  1683. <standard>Zapadna Afrika</standard>
  1684. <daylight>Zapadna Afrika, ljetno vrijeme</daylight>
  1685. </long>
  1686. </metazone>
  1687. <metazone type="America_Central">
  1688. <long>
  1689. <generic>središnje vrijeme</generic>
  1690. <standard>središnje standardno vrijeme</standard>
  1691. <daylight>središnje dnevno vrijeme</daylight>
  1692. </long>
  1693. <short>
  1694. <generic>CT</generic>
  1695. <standard>CST</standard>
  1696. <daylight>CDT</daylight>
  1697. </short>
  1698. </metazone>
  1699. <metazone type="America_Eastern">
  1700. <long>
  1701. <generic>istočno vrijeme</generic>
  1702. <standard>istočno standardno vrijeme</standard>
  1703. <daylight>istočno dnevno vrijeme</daylight>
  1704. </long>
  1705. <short>
  1706. <generic>ET</generic>
  1707. <standard>EST</standard>
  1708. <daylight>EDT</daylight>
  1709. </short>
  1710. </metazone>
  1711. <metazone type="America_Mountain">
  1712. <long>
  1713. <generic>planinsko vrijeme</generic>
  1714. <standard>planinsko standardno vrijeme</standard>
  1715. <daylight>planinsko dnevno vrijeme</daylight>
  1716. </long>
  1717. <short>
  1718. <generic>MT</generic>
  1719. <standard>MST</standard>
  1720. <daylight>MDT</daylight>
  1721. </short>
  1722. </metazone>
  1723. <metazone type="America_Pacific">
  1724. <long>
  1725. <generic>pacifičko vrijeme</generic>
  1726. <standard>pacifičko standardno vrijeme</standard>
  1727. <daylight>pacifičko dnevno vrijeme</daylight>
  1728. </long>
  1729. <short>
  1730. <generic>PT</generic>
  1731. <standard>PST</standard>
  1732. <daylight>PDT</daylight>
  1733. </short>
  1734. </metazone>
  1735. <metazone type="Atlantic">
  1736. <long>
  1737. <generic>atlantsko vrijeme</generic>
  1738. <standard>atlantsko standardno vrijeme</standard>
  1739. <daylight>atlantsko dnevno vrijeme</daylight>
  1740. </long>
  1741. <short>
  1742. <generic>AT</generic>
  1743. <standard>AST</standard>
  1744. <daylight>ADT</daylight>
  1745. </short>
  1746. </metazone>
  1747. </timeZoneNames>
  1748. </dates>
  1749. <numbers>
  1750. <symbols>
  1751. <decimal>,</decimal>
  1752. <group>.</group>
  1753. </symbols>
  1754. <currencyFormats>
  1755. <currencyFormatLength>
  1756. <currencyFormat>
  1757. <pattern>#,##0.00 ¤</pattern>
  1758. </currencyFormat>
  1759. </currencyFormatLength>
  1760. </currencyFormats>
  1761. <currencies>
  1762. <currency type="ADP">
  1763. <displayName>andorska pezeta</displayName>
  1764. <displayName count="many">andorskih pezeta</displayName>
  1765. <displayName count="other">andorskih pezeta</displayName>
  1766. </currency>
  1767. <currency type="AED">
  1768. <displayName>UAE dirham</displayName>
  1769. <displayName count="few">UAE dirhama</displayName>
  1770. <displayName count="many">UAE dirhama</displayName>
  1771. <displayName count="other">UAE dirhama</displayName>
  1772. </currency>
  1773. <currency type="AFA">
  1774. <displayName>afganistanski afgani (1927.-2002.)</displayName>
  1775. <displayName count="few">afganistanska afgana (AFA)</displayName>
  1776. <displayName count="many">afganistanskih afgana (AFA)</displayName>
  1777. <displayName count="one">afganistanski afgan (AFA)</displayName>
  1778. <displayName count="other">afganistanskih afgana (AFA)</displayName>
  1779. </currency>
  1780. <currency type="AFN">
  1781. <displayName>afganistanski afgani</displayName>
  1782. <displayName count="few">afganistanska afgana</displayName>
  1783. <displayName count="many">afganistanskih afgana</displayName>
  1784. <displayName count="one">afganistanski afgan</displayName>
  1785. <displayName count="other">afganistanskih afgana</displayName>
  1786. </currency>
  1787. <currency type="ALL">
  1788. <displayName>albanski lek</displayName>
  1789. <displayName count="few">albanska leka</displayName>
  1790. <displayName count="many">albanskih leka</displayName>
  1791. <displayName count="one">albanski lek</displayName>
  1792. <displayName count="other">albanskih leka</displayName>
  1793. </currency>
  1794. <currency type="AMD">
  1795. <displayName>armenski dram</displayName>
  1796. <displayName count="few">armenska drama</displayName>
  1797. <displayName count="many">armenskih drama</displayName>
  1798. <displayName count="one">armenski dram</displayName>
  1799. <displayName count="other">armenskih drama</displayName>
  1800. </currency>
  1801. <currency type="ANG">
  1802. <displayName>nizozemskoantilski gulden</displayName>
  1803. <displayName count="few">nizozemskoantilska guldena</displayName>
  1804. <displayName count="many">nizozemskoantilskih guldena</displayName>
  1805. <displayName count="one">nizozemskoantilski gulden</displayName>
  1806. <displayName count="other">nizozemskoantilskih guldena</displayName>
  1807. </currency>
  1808. <currency type="AOA">
  1809. <displayName>angolska kvanza</displayName>
  1810. <displayName count="few">angolske kvanze</displayName>
  1811. <displayName count="many">angolskih kvanzi</displayName>
  1812. <displayName count="one">angolska kvanza</displayName>
  1813. <displayName count="other">angolskih kvanzi</displayName>
  1814. </currency>
  1815. <currency type="AOK">
  1816. <displayName>angolska kvanza (1977-1990)</displayName>
  1817. <displayName count="few">angolske kvanze (AOK)</displayName>
  1818. <displayName count="many">angolskih kvanzi (AOK)</displayName>
  1819. <displayName count="one">angolska kvanza (AOK)</displayName>
  1820. <displayName count="other">angolskih kvanzi (AOK)</displayName>
  1821. </currency>
  1822. <currency type="AON">
  1823. <displayName>angolska nova kvanza (1990-2000)</displayName>
  1824. <displayName count="few">angolske nove kvanze (AON)</displayName>
  1825. <displayName count="many">angolskih novih kvanzi (AON)</displayName>
  1826. <displayName count="one">angolska nova kvanza (AON)</displayName>
  1827. <displayName count="other">angolskih novih kvanzi (AON)</displayName>
  1828. </currency>
  1829. <currency type="AOR">
  1830. <displayName>angolska kvanza (1995.-1999.)</displayName>
  1831. <displayName count="few">angolske kvanze reajustado</displayName>
  1832. <displayName count="many">angolskih kvanzi reajustado</displayName>
  1833. <displayName count="one">angolska kvanza reajustado</displayName>
  1834. <displayName count="other">angolskih kvanzi reajustado (AOR)</displayName>
  1835. </currency>
  1836. <currency type="ARA">
  1837. <displayName>argentinski austral</displayName>
  1838. <displayName count="few">argentinska australa</displayName>
  1839. <displayName count="many">argentinskih australa</displayName>
  1840. <displayName count="one">argentinski austral</displayName>
  1841. <displayName count="other">argentinskih australa</displayName>
  1842. </currency>
  1843. <currency type="ARP">
  1844. <displayName>argentinski pezo (1983-1985)</displayName>
  1845. <displayName count="few">argentinska peza (ARP)</displayName>
  1846. <displayName count="many">argentinskih peza (ARP)</displayName>
  1847. <displayName count="one">argentinski pezo (ARP)</displayName>
  1848. <displayName count="other">argentinskih peza (ARP)</displayName>
  1849. </currency>
  1850. <currency type="ARS">
  1851. <displayName>argentinski pezo</displayName>
  1852. <displayName count="few">argentinska pezosa</displayName>
  1853. <displayName count="many">argentinskih pezosa</displayName>
  1854. <displayName count="one">argentinski pezos</displayName>
  1855. <displayName count="other">argentinskih pezosa</displayName>
  1856. </currency>
  1857. <currency type="ATS">
  1858. <displayName>austrijski šiling</displayName>
  1859. <displayName count="few">austrijska šilinga</displayName>
  1860. <displayName count="many">austrijskih šilinga</displayName>
  1861. <displayName count="one">austrijski šiling</displayName>
  1862. <displayName count="other">austrijskih šilinga</displayName>
  1863. </currency>
  1864. <currency type="AUD">
  1865. <displayName>australski dolar</displayName>
  1866. <displayName count="few">australska dolara</displayName>
  1867. <displayName count="many">australskih dolara</displayName>
  1868. <displayName count="one">australski dolar</displayName>
  1869. <displayName count="other">australskih dolara</displayName>
  1870. </currency>
  1871. <currency type="AWG">
  1872. <displayName>arupski gulden</displayName>
  1873. <displayName count="few">arupska guldena</displayName>
  1874. <displayName count="many">arupskih guldena</displayName>
  1875. <displayName count="one">arupski gulden</displayName>
  1876. <displayName count="other">arupskih guldena</displayName>
  1877. </currency>
  1878. <currency type="AZM">
  1879. <displayName>azerbajdžanski manat (1993-2006)</displayName>
  1880. <displayName count="few">azerbajdžanska manata (AZM)</displayName>
  1881. <displayName count="many">azerbajdžanskih manata (AZM)</displayName>
  1882. <displayName count="one">azerbajdžanski manat (AZM)</displayName>
  1883. <displayName count="other">azerbajdžanskih manata (AZM)</displayName>
  1884. </currency>
  1885. <currency type="AZN">
  1886. <displayName>azerbajdžanski manat</displayName>
  1887. <displayName count="few">azerbajdžanska manata</displayName>
  1888. <displayName count="many">azerbajdžanskih manata</displayName>
  1889. <displayName count="one">azerbajdžanski manat</displayName>
  1890. <displayName count="other">azerbajdžanskih manata</displayName>
  1891. </currency>
  1892. <currency type="BAD">
  1893. <displayName>bosansko-hercegovački dinar</displayName>
  1894. <displayName count="few">bosansko-hercegovačka dinara</displayName>
  1895. <displayName count="many">bosansko-hercegovačkih dinara</displayName>
  1896. <displayName count="other">bosansko-hercegovačkih dinara</displayName>
  1897. </currency>
  1898. <currency type="BAM">
  1899. <displayName>konvertibilna marka</displayName>
  1900. <displayName count="few">konvertibilne marke</displayName>
  1901. <displayName count="many">konvertibilnih maraka</displayName>
  1902. <displayName count="one">konvertibilna marka</displayName>
  1903. <displayName count="other">konvertibilnih maraka</displayName>
  1904. </currency>
  1905. <currency type="BBD">
  1906. <displayName>barbadoski dolar</displayName>
  1907. <displayName count="few">barbadoska dolara</displayName>
  1908. <displayName count="many">barbadoskih dolara</displayName>
  1909. <displayName count="one">barbadoski dolar</displayName>
  1910. <displayName count="other">barbadoskih dolara</displayName>
  1911. </currency>
  1912. <currency type="BDT">
  1913. <displayName>taka</displayName>
  1914. <displayName count="few">bangladeške take</displayName>
  1915. <displayName count="many">bangladeških taka</displayName>
  1916. <displayName count="one">bangladeška taka</displayName>
  1917. <displayName count="other">bangladeških taka</displayName>
  1918. </currency>
  1919. <currency type="BEC">
  1920. <displayName>belgijski franak (konvertibilan)</displayName>
  1921. <displayName count="few">belgijska franka (konvertibilna)</displayName>
  1922. <displayName count="many">belgijskih franaka (konvertibilnih)</displayName>
  1923. <displayName count="one">belgijski franak (konvertibilan)</displayName>
  1924. <displayName count="other">belgijskih franaka (konvertibilnih)</displayName>
  1925. </currency>
  1926. <currency type="BEF">
  1927. <displayName>belgijski franak</displayName>
  1928. <displayName count="few">belgijska franka</displayName>
  1929. <displayName count="many">belgijskih franaka</displayName>
  1930. <displayName count="one">belgijski franak</displayName>
  1931. <displayName count="other">belgijskih franaka</displayName>
  1932. </currency>
  1933. <currency type="BEL">
  1934. <displayName>belgijski franak (financijski)</displayName>
  1935. <displayName count="few">belgijska franka (financijska)</displayName>
  1936. <displayName count="many">belgijskih franaka (financijskih)</displayName>
  1937. <displayName count="one">belgijski franak (financijski)</displayName>
  1938. <displayName count="other">belgijskih franaka (financijskih)</displayName>
  1939. </currency>
  1940. <currency type="BGL">
  1941. <displayName>bugarski čvrsti lev</displayName>
  1942. <displayName count="few">bugarska čvrsta leva</displayName>
  1943. <displayName count="many">bugarskih čvrstih leva</displayName>
  1944. <displayName count="one">bugarski čvrsti lev</displayName>
  1945. <displayName count="other">bugarskih čvrstih leva</displayName>
  1946. </currency>
  1947. <currency type="BGN">
  1948. <displayName>bugarski novi lev</displayName>
  1949. <displayName count="few">bugarska leva</displayName>
  1950. <displayName count="many">bugarskih leva</displayName>
  1951. <displayName count="one">bugarski lev</displayName>
  1952. <displayName count="other">bugarskih leva</displayName>
  1953. </currency>
  1954. <currency type="BHD">
  1955. <displayName>bahreinski dinar</displayName>
  1956. <displayName count="few">bahreinska dinara</displayName>
  1957. <displayName count="many">bahreinskih dinara</displayName>
  1958. <displayName count="one">bahreinski dinar</displayName>
  1959. <displayName count="other">bahreinskih dinara</displayName>
  1960. </currency>
  1961. <currency type="BIF">
  1962. <displayName>burundski franak</displayName>
  1963. <displayName count="few">burundska franka</displayName>
  1964. <displayName count="many">burundskih franaka</displayName>
  1965. <displayName count="one">burundski franak</displayName>
  1966. <displayName count="other">burundskih franaka</displayName>
  1967. </currency>
  1968. <currency type="BMD">
  1969. <displayName>bermudski dolar</displayName>
  1970. <displayName count="few">bermudska dolara</displayName>
  1971. <displayName count="many">bermudskih dolara</displayName>
  1972. <displayName count="one">bermudski dolar</displayName>
  1973. <displayName count="other">bermudskih dolara</displayName>
  1974. </currency>
  1975. <currency type="BND">
  1976. <displayName>brunejski dolar</displayName>
  1977. <displayName count="few">brunejska dolara</displayName>
  1978. <displayName count="many">brunejskih dolara</displayName>
  1979. <displayName count="one">brunejski dolar</displayName>
  1980. <displayName count="other">brunejskih dolara</displayName>
  1981. </currency>
  1982. <currency type="BOB">
  1983. <displayName>bolivijano</displayName>
  1984. <displayName count="few">bolivijska bolivijana</displayName>
  1985. <displayName count="many">bolivijskih bolivijana</displayName>
  1986. <displayName count="one">bolivijski bolivijano</displayName>
  1987. <displayName count="other">bolivijskih bolivijana</displayName>
  1988. </currency>
  1989. <currency type="BOP">
  1990. <displayName>bolivijski pezo</displayName>
  1991. <displayName count="few">bolivijska peza</displayName>
  1992. <displayName count="many">bolivijskih peza</displayName>
  1993. <displayName count="one">bolivijski pezo</displayName>
  1994. <displayName count="other">bolivijskih peza</displayName>
  1995. </currency>
  1996. <currency type="BOV">
  1997. <displayName>bolivijski mvdol</displayName>
  1998. <displayName count="few">bolivijska mvdola</displayName>
  1999. <displayName count="many">bolivijskih mvdola</displayName>
  2000. <displayName count="one">bolivijski mvdol</displayName>
  2001. <displayName count="other">bolivijskih mvdola</displayName>
  2002. </currency>
  2003. <currency type="BRB">
  2004. <displayName>brazilski novi cruzeiro (1967.-1986.)</displayName>
  2005. <displayName count="few">brazilska nova cruzeira (BRB)</displayName>
  2006. <displayName count="many">brazilskih novih cruzeira (BRB)</displayName>
  2007. <displayName count="one">brazilski novi cruzeir (BRB)</displayName>
  2008. <displayName count="other">brazilskih novih cruzeira (BRB)</displayName>
  2009. </currency>
  2010. <currency type="BRC">
  2011. <displayName>brazilski cruzado</displayName>
  2012. <displayName count="few">brazilska cruzada</displayName>
  2013. <displayName count="many">brazilskih cruzada</displayName>
  2014. <displayName count="one">brazilski cruzad</displayName>
  2015. <displayName count="other">brazilskih cruzada</displayName>
  2016. </currency>
  2017. <currency type="BRE">
  2018. <displayName>brazilski cruzeiro (1990.-1993.)</displayName>
  2019. <displayName count="few">brazilska cruzeira (BRE)</displayName>
  2020. <displayName count="many">brazilskih cruzeira (BRE)</displayName>
  2021. <displayName count="one">brazilski cruzeir (BRE)</displayName>
  2022. <displayName count="other">brazilskih cruzeira (BRE)</displayName>
  2023. </currency>
  2024. <currency type="BRL">
  2025. <displayName>brazilski real</displayName>
  2026. <displayName count="few">brazilska reala</displayName>
  2027. <displayName count="many">brazilskih reala</displayName>
  2028. <displayName count="one">brazilski real</displayName>
  2029. <displayName count="other">brazilskih reala</displayName>
  2030. </currency>
  2031. <currency type="BRN">
  2032. <displayName>brazilski novi cruzado</displayName>
  2033. <displayName count="few">brazilska nova cruzada</displayName>
  2034. <displayName count="many">brazilskih novih cruzada</displayName>
  2035. <displayName count="one">brazilski novi cruzad</displayName>
  2036. <displayName count="other">brazilskih novih cruzada</displayName>
  2037. </currency>
  2038. <currency type="BRR">
  2039. <displayName>brazilski cruzeiro</displayName>
  2040. <displayName count="few">brazilska cruzeira</displayName>
  2041. <displayName count="many">brazilskih cruzeira</displayName>
  2042. <displayName count="one">brazilski cruzeiro</displayName>
  2043. <displayName count="other">brazilskih cruzeira</displayName>
  2044. </currency>
  2045. <currency type="BSD">
  2046. <displayName>bahamski dolar</displayName>
  2047. <displayName count="few">bahamska dolara</displayName>
  2048. <displayName count="many">bahamskih dolara</displayName>
  2049. <displayName count="other">bahamskih dolara</displayName>
  2050. </currency>
  2051. <currency type="BTN">
  2052. <displayName>butanski ngultrum</displayName>
  2053. <displayName count="few">butanska ngultruma</displayName>
  2054. <displayName count="many">butanskih ngultruma</displayName>
  2055. <displayName count="one">butanski ngultrum</displayName>
  2056. <displayName count="other">butanskih ngultruma</displayName>
  2057. </currency>
  2058. <currency type="BUK">
  2059. <displayName>kyat</displayName>
  2060. <displayName count="few">kyata</displayName>
  2061. <displayName count="many">kyata</displayName>
  2062. <displayName count="one">kyat</displayName>
  2063. <displayName count="other">kyata</displayName>
  2064. </currency>
  2065. <currency type="BWP">
  2066. <displayName>pula</displayName>
  2067. <displayName count="few">bocvanske pule</displayName>
  2068. <displayName count="many">bocvanskih pula</displayName>
  2069. <displayName count="one">bocvanska pula</displayName>
  2070. <displayName count="other">bocvanskih pula</displayName>
  2071. </currency>
  2072. <currency type="BYB">
  2073. <displayName>bjeloruska nova rublja (1994-1999)</displayName>
  2074. <displayName count="few">bjeloruske nove rublje (BYB)</displayName>
  2075. <displayName count="many">bjeloruskih novih rublji (BYB)</displayName>
  2076. <displayName count="one">bjeloruska nova rublja (BYB)</displayName>
  2077. <displayName count="other">bjeloruskih novih rublji (BYB)</displayName>
  2078. </currency>
  2079. <currency type="BYR">
  2080. <displayName>bjeloruska rublja</displayName>
  2081. <displayName count="few">bjeloruske rublje</displayName>
  2082. <displayName count="many">bjeloruskih rublji</displayName>
  2083. <displayName count="one">bjeloruska rublja</displayName>
  2084. <displayName count="other">bjeloruskih rublji</displayName>
  2085. </currency>
  2086. <currency type="BZD">
  2087. <displayName>belizeanski dolar</displayName>
  2088. <displayName count="few">belizeanska dolara</displayName>
  2089. <displayName count="many">belizeanskih dolara</displayName>
  2090. <displayName count="one">belizeanski dolar</displayName>
  2091. <displayName count="other">belizeanskih dolara</displayName>
  2092. </currency>
  2093. <currency type="CAD">
  2094. <displayName>kanadski dolar</displayName>
  2095. <displayName count="few">kanadska dolara</displayName>
  2096. <displayName count="many">kanadskih dolara</displayName>
  2097. <displayName count="one">kanadski dolar</displayName>
  2098. <displayName count="other">kanadskih dolara</displayName>
  2099. </currency>
  2100. <currency type="CDF">
  2101. <displayName>kongoanski franak</displayName>
  2102. <displayName count="few">kongoanska franka</displayName>
  2103. <displayName count="many">kongoanskih franaka</displayName>
  2104. <displayName count="one">kongoanski franak</displayName>
  2105. <displayName count="other">kongoanskih franaka</displayName>
  2106. </currency>
  2107. <currency type="CHE">
  2108. <displayName>WIR euro</displayName>
  2109. <displayName count="few">WIR eura</displayName>
  2110. <displayName count="many">WIR eura</displayName>
  2111. <displayName count="one">WIR euro</displayName>
  2112. <displayName count="other">WIR eura</displayName>
  2113. </currency>
  2114. <currency type="CHF">
  2115. <displayName>švicarski franak</displayName>
  2116. <displayName count="few">švicarska franka</displayName>
  2117. <displayName count="many">švicarskih franaka</displayName>
  2118. <displayName count="one">švicarski franak</displayName>
  2119. <displayName count="other">švicarskih franaka</displayName>
  2120. </currency>
  2121. <currency type="CHW">
  2122. <displayName>WIR franak</displayName>
  2123. <displayName count="few">WIR franka</displayName>
  2124. <displayName count="many">WIR franaka</displayName>
  2125. <displayName count="one">WIR franak</displayName>
  2126. <displayName count="other">WIR franaka</displayName>
  2127. </currency>
  2128. <currency type="CLF">
  2129. <displayName>Chilean Unidades de Fomento</displayName>
  2130. <displayName count="few">čileanska unidades de fomentos</displayName>
  2131. <displayName count="many">čileanskih unidades de fomentos</displayName>
  2132. <displayName count="one">čileanski unidades de fomentos</displayName>
  2133. <displayName count="other">čileanskih unidades de fomentos</displayName>
  2134. </currency>
  2135. <currency type="CLP">
  2136. <displayName>čileanski pezo</displayName>
  2137. <displayName count="few">čileanska peza</displayName>
  2138. <displayName count="many">čileanskih peza</displayName>
  2139. <displayName count="one">čileanski pezo</displayName>
  2140. <displayName count="other">čileanskih peza</displayName>
  2141. </currency>
  2142. <currency type="CNY">
  2143. <displayName>renminbi-juan</displayName>
  2144. <displayName count="few">kineska yuana</displayName>
  2145. <displayName count="many">kineskih yuana</displayName>
  2146. <displayName count="one">kineski yuan</displayName>
  2147. <displayName count="other">kineskih yuana</displayName>
  2148. </currency>
  2149. <currency type="COP">
  2150. <displayName>kolumbijski pezo</displayName>
  2151. <displayName count="few">kolumbijska peza</displayName>
  2152. <displayName count="many">kolumbijskih peza</displayName>
  2153. <displayName count="one">kolumbijski pezo</displayName>
  2154. <displayName count="other">kolumbijskih peza</displayName>
  2155. </currency>
  2156. <currency type="COU">
  2157. <displayName>Unidad de Valor Real</displayName>
  2158. <displayName count="few">unidad de valor reala</displayName>
  2159. <displayName count="many">unidad de valor reala</displayName>
  2160. <displayName count="one">unidad de valor real</displayName>
  2161. <displayName count="other">unidad de valor reala</displayName>
  2162. </currency>
  2163. <currency type="CRC">
  2164. <displayName>kostarikanski kolon</displayName>
  2165. <displayName count="few">kostarikanska kolona</displayName>
  2166. <displayName count="many">kostarikanskih kolona</displayName>
  2167. <displayName count="one">kostarikanski kolon</displayName>
  2168. <displayName count="other">kostarikanskih kolona</displayName>
  2169. </currency>
  2170. <currency type="CSD">
  2171. <displayName>stari srpski dinar</displayName>
  2172. <displayName count="few">stara srpska dinara</displayName>
  2173. <displayName count="many">starih srpskih dinara</displayName>
  2174. <displayName count="other">starih srpskih dinara</displayName>
  2175. </currency>
  2176. <currency type="CSK">
  2177. <displayName>Czechoslovak Hard Koruna</displayName>
  2178. <displayName count="few">čehoslovačke krune</displayName>
  2179. <displayName count="many">čehoslovačkih kruna</displayName>
  2180. <displayName count="one">čehoslovačka kruna</displayName>
  2181. <displayName count="other">čehoslovačkih kruna</displayName>
  2182. </currency>
  2183. <currency type="CUP">
  2184. <displayName>kubanski pezo</displayName>
  2185. <displayName count="few">kubanska peza</displayName>
  2186. <displayName count="many">kubanskih peza</displayName>
  2187. <displayName count="one">kubanski pezo</displayName>
  2188. <displayName count="other">kubanskih peza</displayName>
  2189. </currency>
  2190. <currency type="CVE">
  2191. <displayName>zelenortski eskudo</displayName>
  2192. <displayName count="few">zelenortska eskuda</displayName>
  2193. <displayName count="many">zelenortskih eskuda</displayName>
  2194. <displayName count="one">zelenortski eskudo</displayName>
  2195. <displayName count="other">zelenortskih eskuda</displayName>
  2196. </currency>
  2197. <currency type="CYP">
  2198. <displayName>ciparska funta</displayName>
  2199. <displayName count="few">ciparske funte</displayName>
  2200. <displayName count="many">ciparskih funti</displayName>
  2201. <displayName count="one">ciparska funta</displayName>
  2202. <displayName count="other">ciparskih funti</displayName>
  2203. </currency>
  2204. <currency type="CZK">
  2205. <displayName>češka kruna</displayName>
  2206. <displayName count="few">češke krune</displayName>
  2207. <displayName count="many">čeških kruna</displayName>
  2208. <displayName count="one">češka kruna</displayName>
  2209. <displayName count="other">čeških kruna</displayName>
  2210. </currency>
  2211. <currency type="DDM">
  2212. <displayName>East German Ostmark</displayName>
  2213. <displayName count="few">istočnonjemačke marke</displayName>
  2214. <displayName count="many">istočnonjemačkih marki</displayName>
  2215. <displayName count="one">istočnonjemačka marka</displayName>
  2216. <displayName count="other">istočnonjemačkih marki</displayName>
  2217. </currency>
  2218. <currency type="DEM">
  2219. <displayName>njemačka marka</displayName>
  2220. <displayName count="few">njemačke marke</displayName>
  2221. <displayName count="many">njemačkih marki</displayName>
  2222. <displayName count="one">njemačka marka</displayName>
  2223. <displayName count="other">njemačkih marki</displayName>
  2224. </currency>
  2225. <currency type="DJF">
  2226. <displayName>džibutski franak</displayName>
  2227. <displayName count="few">džibutska franka</displayName>
  2228. <displayName count="many">džibutskih franaka</displayName>
  2229. <displayName count="one">džibutski franak</displayName>
  2230. <displayName count="other">džibutskih franaka</displayName>
  2231. </currency>
  2232. <currency type="DKK">
  2233. <displayName>danska kruna</displayName>
  2234. <displayName count="few">danske krune</displayName>
  2235. <displayName count="many">danskih kruna</displayName>
  2236. <displayName count="one">danska kruna</displayName>
  2237. <displayName count="other">danskih kruna</displayName>
  2238. </currency>
  2239. <currency type="DOP">
  2240. <displayName>dominikanski pezo</displayName>
  2241. <displayName count="few">dominikanska peza</displayName>
  2242. <displayName count="many">dominikanskih peza</displayName>
  2243. <displayName count="one">dominikanski pezo</displayName>
  2244. <displayName count="other">dominikanskih peza</displayName>
  2245. </currency>
  2246. <currency type="DZD">
  2247. <displayName>alžirski dinar</displayName>
  2248. <displayName count="few">alžirska dinara</displayName>
  2249. <displayName count="many">alžirskih dinara</displayName>
  2250. <displayName count="one">alžirski dinar</displayName>
  2251. <displayName count="other">alžirskih dinara</displayName>
  2252. </currency>
  2253. <currency type="ECS">
  2254. <displayName>Ecuador Sucre</displayName>
  2255. <displayName count="few">ekvatorske sucre</displayName>
  2256. <displayName count="many">ekvatorskih sucri</displayName>
  2257. <displayName count="one">evatorska sucra</displayName>
  2258. <displayName count="other">ekvatorskih sucri</displayName>
  2259. </currency>
  2260. <currency type="ECV">
  2261. <displayName>Ecuador Unidad de Valor Constante (UVC)</displayName>
  2262. <displayName count="few">ekvatorska unidad de valor constante (UVC)</displayName>
  2263. <displayName count="many">ekvatorskih unidad de valor constante (UVC)</displayName>
  2264. <displayName count="one">ekvatorski unidad de valor constante (UVC)</displayName>
  2265. <displayName count="other">ekvatorskih unidad de valor constante (UVC)</displayName>
  2266. </currency>
  2267. <currency type="EEK">
  2268. <displayName>estonska kruna</displayName>
  2269. <displayName count="few">estonske krune</displayName>
  2270. <displayName count="many">estonskih kruna</displayName>
  2271. <displayName count="one">estonska kruna</displayName>
  2272. <displayName count="other">estonskih kruna</displayName>
  2273. </currency>
  2274. <currency type="EGP">
  2275. <displayName>egipatska funta</displayName>
  2276. <displayName count="few">egipatske funte</displayName>
  2277. <displayName count="many">egipatskih funti</displayName>
  2278. <displayName count="one">egipatska funta</displayName>
  2279. <displayName count="other">egipatskih funti</displayName>
  2280. </currency>
  2281. <currency type="ERN">
  2282. <displayName>nakfa</displayName>
  2283. <displayName count="few">eritrejske nakfe</displayName>
  2284. <displayName count="many">eritrejskih nakfi</displayName>
  2285. <displayName count="one">eritrejska nakfa</displayName>
  2286. <displayName count="other">eritrejskih nakfi</displayName>
  2287. </currency>
  2288. <currency type="ESA">
  2289. <displayName>španjolska pezeta (A račun)</displayName>
  2290. <displayName count="few">španjolske pezete (A račun)</displayName>
  2291. <displayName count="many">španjolskih pezeta (A račun)</displayName>
  2292. <displayName count="one">španjolska pezeta (A račun)</displayName>
  2293. <displayName count="other">španjolskih pezeta (A račun)</displayName>
  2294. </currency>
  2295. <currency type="ESB">
  2296. <displayName>španjolska pezeta (konvertibilni račun)</displayName>
  2297. <displayName count="few">španjolske pezete (konvertibilan račun)</displayName>
  2298. <displayName count="many">španjolskih pezeta (konvertibilan račun)</displayName>
  2299. <displayName count="one">španjolska pezeta (konvertibilan račun)</displayName>
  2300. <displayName count="other">španjolskih pezeta (konvertibilan račun)</displayName>
  2301. </currency>
  2302. <currency type="ESP">
  2303. <displayName>španjolska pezeta</displayName>
  2304. <displayName count="few">španjolske pezete</displayName>
  2305. <displayName count="many">španjolskih pezeta</displayName>
  2306. <displayName count="one">španjolska pezeta</displayName>
  2307. <displayName count="other">španjolskih pezeta</displayName>
  2308. </currency>
  2309. <currency type="ETB">
  2310. <displayName>etiopski bir</displayName>
  2311. <displayName count="few">etiopska bira</displayName>
  2312. <displayName count="many">etiopskih bira</displayName>
  2313. <displayName count="one">etiopski bir</displayName>
  2314. <displayName count="other">etiopskih bira</displayName>
  2315. </currency>
  2316. <currency type="EUR">
  2317. <displayName>euro</displayName>
  2318. <displayName count="few">eura</displayName>
  2319. <displayName count="many">eura</displayName>
  2320. <displayName count="one">euro</displayName>
  2321. <displayName count="other">eura</displayName>
  2322. </currency>
  2323. <currency type="FIM">
  2324. <displayName>finska marka</displayName>
  2325. <displayName count="few">finske marke</displayName>
  2326. <displayName count="many">finskih marki</displayName>
  2327. <displayName count="one">finska marka</displayName>
  2328. <displayName count="other">finskih marki</displayName>
  2329. </currency>
  2330. <currency type="FJD">
  2331. <displayName>fidžijski dolar</displayName>
  2332. <displayName count="few">fidžijska dolara</displayName>
  2333. <displayName count="many">fidžijskih dolara</displayName>
  2334. <displayName count="one">fidžijski dolar</displayName>
  2335. <displayName count="other">fidžijskih dolara</displayName>
  2336. </currency>
  2337. <currency type="FKP">
  2338. <displayName>falklandska funta</displayName>
  2339. <displayName count="few">falklandske funte</displayName>
  2340. <displayName count="many">falklandskih funti</displayName>
  2341. <displayName count="one">falklandska funta</displayName>
  2342. <displayName count="other">falklandskih funti</displayName>
  2343. </currency>
  2344. <currency type="FRF">
  2345. <displayName>francuski franak</displayName>
  2346. <displayName count="few">francuska franka</displayName>
  2347. <displayName count="many">francuskih franaka</displayName>
  2348. <displayName count="one">francuski franak</displayName>
  2349. <displayName count="other">francuskih franaka</displayName>
  2350. </currency>
  2351. <currency type="GBP">
  2352. <displayName>britanska funta</displayName>
  2353. <displayName count="few">britanske funte</displayName>
  2354. <displayName count="many">britanskih funti</displayName>
  2355. <displayName count="one">britanska funta</displayName>
  2356. <displayName count="other">britanskih funti</displayName>
  2357. </currency>
  2358. <currency type="GEK">
  2359. <displayName>Georgian Kupon Larit</displayName>
  2360. <displayName count="few">gruzijska kupon larita</displayName>
  2361. <displayName count="many">gruzijskih kupon larita</displayName>
  2362. <displayName count="one">gruzijski kupon larit</displayName>
  2363. <displayName count="other">gruzijskih kupon larita</displayName>
  2364. </currency>
  2365. <currency type="GEL">
  2366. <displayName>lari</displayName>
  2367. <displayName count="few">gruzijska lara</displayName>
  2368. <displayName count="many">gruzijskih lara</displayName>
  2369. <displayName count="one">gruzijski lar</displayName>
  2370. <displayName count="other">gruzijskih lara</displayName>
  2371. </currency>
  2372. <currency type="GHC">
  2373. <displayName>ganski cedi (1979.-2007.)</displayName>
  2374. <displayName count="few">ganska ceda (GHC)</displayName>
  2375. <displayName count="many">ganskih ceda (GHC)</displayName>
  2376. <displayName count="one">ganski cedi (GHC)</displayName>
  2377. <displayName count="other">ganskih ceda (GHC)</displayName>
  2378. </currency>
  2379. <currency type="GHS">
  2380. <displayName>ganski cedi</displayName>
  2381. <displayName count="few">ganska ceda</displayName>
  2382. <displayName count="many">ganskih ceda</displayName>
  2383. <displayName count="one">ganski cedi</displayName>
  2384. <displayName count="other">ganskih ceda</displayName>
  2385. </currency>
  2386. <currency type="GIP">
  2387. <displayName>gibraltarska funta</displayName>
  2388. <displayName count="few">gibraltarske funte</displayName>
  2389. <displayName count="many">gibraltarskih funti</displayName>
  2390. <displayName count="one">gibraltarska funta</displayName>
  2391. <displayName count="other">gibraltarskih funti</displayName>
  2392. </currency>
  2393. <currency type="GMD">
  2394. <displayName>dalasi</displayName>
  2395. <displayName count="few">gambijska dalasa</displayName>
  2396. <displayName count="many">gambijskih dalasa</displayName>
  2397. <displayName count="one">gambijski dalas</displayName>
  2398. <displayName count="other">gambijskih dalasa</displayName>
  2399. </currency>
  2400. <currency type="GNF">
  2401. <displayName>gvinejski franak</displayName>
  2402. <displayName count="few">gvinejska franka</displayName>
  2403. <displayName count="many">gvinejskih franaka</displayName>
  2404. <displayName count="one">gvinejski franak</displayName>
  2405. <displayName count="other">gvinejskih franaka</displayName>
  2406. </currency>
  2407. <currency type="GNS">
  2408. <displayName>gvinejski syli</displayName>
  2409. <displayName count="few">gvinejska sylija</displayName>
  2410. <displayName count="many">gvinejskih sylija</displayName>
  2411. <displayName count="one">gvinejski syli</displayName>
  2412. <displayName count="other">gvinejskih sylija</displayName>
  2413. </currency>
  2414. <currency type="GQE">
  2415. <displayName>Equatorial Guinea Ekwele Guineana</displayName>
  2416. <displayName count="few">gvinejska ekwele</displayName>
  2417. <displayName count="many">gvinejskih ekwele</displayName>
  2418. <displayName count="one">gvinejska ekwele</displayName>
  2419. <displayName count="other">gvinejskih ekwele</displayName>
  2420. </currency>
  2421. <currency type="GRD">
  2422. <displayName>grčka drahma</displayName>
  2423. <displayName count="few">grčke drahme</displayName>
  2424. <displayName count="many">grčkih drahmi</displayName>
  2425. <displayName count="one">grčka drahma</displayName>
  2426. <displayName count="other">grčkih drahmi</displayName>
  2427. </currency>
  2428. <currency type="GTQ">
  2429. <displayName>kvecal</displayName>
  2430. <displayName count="few">gvatemalska kvecala</displayName>
  2431. <displayName count="many">gvatemalskih kvecala</displayName>
  2432. <displayName count="one">gvatemalski kvecal</displayName>
  2433. <displayName count="other">gvatemalskih kvecala</displayName>
  2434. </currency>
  2435. <currency type="GWE">
  2436. <displayName>portugalski gvineja eskudo</displayName>
  2437. <displayName count="few">gvinejska eskuda</displayName>
  2438. <displayName count="many">gvinejskih eskuda</displayName>
  2439. <displayName count="one">gvinejski eskudo</displayName>
  2440. <displayName count="other">gvinejskih eskuda</displayName>
  2441. </currency>
  2442. <currency type="GWP">
  2443. <displayName>gvinejskobisauski pezo</displayName>
  2444. <displayName count="few">gvinejskobisauska peza</displayName>
  2445. <displayName count="many">gvinejskobisauskih peza</displayName>
  2446. <displayName count="one">gvinejskobisauski pezo</displayName>
  2447. <displayName count="other">gvinejskobisauskih peza</displayName>
  2448. </currency>
  2449. <currency type="GYD">
  2450. <displayName>gvajanski dolar</displayName>
  2451. <displayName count="few">gvajanska dolara</displayName>
  2452. <displayName count="many">gvajanskih dolara</displayName>
  2453. <displayName count="one">gvajanski dolar</displayName>
  2454. <displayName count="other">gvajanskih dolara</displayName>
  2455. </currency>
  2456. <currency type="HKD">
  2457. <displayName>hongkonški dolar</displayName>
  2458. <displayName count="few">honkonška dolara</displayName>
  2459. <displayName count="many">honkonških dolara</displayName>
  2460. <displayName count="one">honkonški dolar</displayName>
  2461. <displayName count="other">honkonških dolara</displayName>
  2462. </currency>
  2463. <currency type="HNL">
  2464. <displayName>honduraška lempira</displayName>
  2465. <displayName count="few">honduraške lempire</displayName>
  2466. <displayName count="many">honduraških lempira</displayName>
  2467. <displayName count="one">honduraška lempira</displayName>
  2468. <displayName count="other">honduraških lempira</displayName>
  2469. </currency>
  2470. <currency type="HRD">
  2471. <displayName>hrvatski dinar</displayName>
  2472. <displayName count="few">hrvatska dinara</displayName>
  2473. <displayName count="many">hrvatskih dinara</displayName>
  2474. <displayName count="one">hrvatski dinar</displayName>
  2475. <displayName count="other">hrvatskih dinara</displayName>
  2476. </currency>
  2477. <currency type="HRK">
  2478. <displayName>kuna</displayName>
  2479. <displayName count="few">kune</displayName>
  2480. <displayName count="many">kuna</displayName>
  2481. <displayName count="one">kuna</displayName>
  2482. <displayName count="other">kuna</displayName>
  2483. </currency>
  2484. <currency type="HTG">
  2485. <displayName>haićanski gourd</displayName>
  2486. <displayName count="few">haićanska gourda</displayName>
  2487. <displayName count="many">haićanskih gourda</displayName>
  2488. <displayName count="one">haićanski gourd</displayName>
  2489. <displayName count="other">haićanskih gourda</displayName>
  2490. </currency>
  2491. <currency type="HUF">
  2492. <displayName>mađarska forinta</displayName>
  2493. <displayName count="few">mađarske forinte</displayName>
  2494. <displayName count="many">mađarskih forinti</displayName>
  2495. <displayName count="one">mađarska forinta</displayName>
  2496. <displayName count="other">mađarskih forinti</displayName>
  2497. </currency>
  2498. <currency type="IDR">
  2499. <displayName>indonezijska rupija</displayName>
  2500. <displayName count="few">indonezijske rupije</displayName>
  2501. <displayName count="many">indonezijskih rupija</displayName>
  2502. <displayName count="one">indonezijska rupija</displayName>
  2503. <displayName count="other">indonezijskih rupija</displayName>
  2504. </currency>
  2505. <currency type="IEP">
  2506. <displayName>irska funta</displayName>
  2507. <displayName count="few">irske funte</displayName>
  2508. <displayName count="many">irskih funti</displayName>
  2509. <displayName count="one">irska funta</displayName>
  2510. <displayName count="other">irskih funti</displayName>
  2511. </currency>
  2512. <currency type="ILP">
  2513. <displayName>izraelska funta</displayName>
  2514. <displayName count="few">izraelske funte</displayName>
  2515. <displayName count="many">izraelskih funti</displayName>
  2516. <displayName count="one">izraelska funta</displayName>
  2517. <displayName count="other">izraelskih funti</displayName>
  2518. </currency>
  2519. <currency type="ILR">
  2520. <displayName>stari izraelski šekel</displayName>
  2521. <displayName count="few">stara izraelska šekela</displayName>
  2522. <displayName count="many">starih izraelskih šekela</displayName>
  2523. <displayName count="one">stari izraelski šekel</displayName>
  2524. <displayName count="other">starih izraelskih šekela</displayName>
  2525. </currency>
  2526. <currency type="ILS">
  2527. <displayName>novi izraelski šekel</displayName>
  2528. <displayName count="few">nova izraelska šekela</displayName>
  2529. <displayName count="many">novih izraelskih šekela</displayName>
  2530. <displayName count="one">novi izraelski šekel</displayName>
  2531. <displayName count="other">novih izraelskih šekela</displayName>
  2532. </currency>
  2533. <currency type="INR">
  2534. <displayName>indijska rupija</displayName>
  2535. <displayName count="few">indijske rupije</displayName>
  2536. <displayName count="many">indijskih rupija</displayName>
  2537. <displayName count="one">indijska rupija</displayName>
  2538. <displayName count="other">indijskih rupija</displayName>
  2539. </currency>
  2540. <currency type="IQD">
  2541. <displayName>irački dinar</displayName>
  2542. <displayName count="few">iračka dinara</displayName>
  2543. <displayName count="many">iračkih dinara</displayName>
  2544. <displayName count="one">irački dinar</displayName>
  2545. <displayName count="other">iračkih dinara</displayName>
  2546. </currency>
  2547. <currency type="IRR">
  2548. <displayName>iranski rijal</displayName>
  2549. <displayName count="few">iranska rijala</displayName>
  2550. <displayName count="many">iranskih rijala</displayName>
  2551. <displayName count="one">iranski rijal</displayName>
  2552. <displayName count="other">iranskih rijala</displayName>
  2553. </currency>
  2554. <currency type="ISJ">
  2555. <displayName>stara islandska kruna</displayName>
  2556. <displayName count="few">stare islandske krune</displayName>
  2557. <displayName count="many">starih islandskih kruna</displayName>
  2558. <displayName count="one">stara islandska kruna</displayName>
  2559. <displayName count="other">starih islandskih kruna</displayName>
  2560. </currency>
  2561. <currency type="ISK">
  2562. <displayName>islandska kruna</displayName>
  2563. <displayName count="few">islandske krune</displayName>
  2564. <displayName count="many">islandskih kruna</displayName>
  2565. <displayName count="one">islandska kruna</displayName>
  2566. <displayName count="other">islandskih kruna</displayName>
  2567. </currency>
  2568. <currency type="ITL">
  2569. <displayName>Talijanska lira</displayName>
  2570. <displayName count="few">talijanske lire</displayName>
  2571. <displayName count="many">talijanskih lira</displayName>
  2572. <displayName count="one">talijanska lira</displayName>
  2573. <displayName count="other">talijanskih lira</displayName>
  2574. </currency>
  2575. <currency type="JMD">
  2576. <displayName>jamajčanski dolar</displayName>
  2577. <displayName count="few">jamajčanska dolara</displayName>
  2578. <displayName count="many">jamajčanskih dolara</displayName>
  2579. <displayName count="one">jamajčanski dolar</displayName>
  2580. <displayName count="other">jamajčanskih dolara</displayName>
  2581. </currency>
  2582. <currency type="JOD">
  2583. <displayName>jordanski dinar</displayName>
  2584. <displayName count="few">jordanska dinara</displayName>
  2585. <displayName count="many">jordanskih dinara</displayName>
  2586. <displayName count="one">jordanski dinar</displayName>
  2587. <displayName count="other">jordanskih dinara</displayName>
  2588. </currency>
  2589. <currency type="JPY">
  2590. <displayName>japanski jen</displayName>
  2591. <displayName count="few">japanska jena</displayName>
  2592. <displayName count="many">japanskih jena</displayName>
  2593. <displayName count="one">japanski jen</displayName>
  2594. <displayName count="other">japanskih jena</displayName>
  2595. <symbol>¥</symbol>
  2596. </currency>
  2597. <currency type="KES">
  2598. <displayName>kenijski šiling</displayName>
  2599. <displayName count="few">kenijska šilinga</displayName>
  2600. <displayName count="many">kenijskih šilinga</displayName>
  2601. <displayName count="one">kenijski šiling</displayName>
  2602. <displayName count="other">kenijskih šilinga</displayName>
  2603. </currency>
  2604. <currency type="KGS">
  2605. <displayName>kirgiski som</displayName>
  2606. <displayName count="few">kirgijska soma</displayName>
  2607. <displayName count="many">kirgijskih soma</displayName>
  2608. <displayName count="one">kirgijski som</displayName>
  2609. <displayName count="other">kirgijskih soma</displayName>
  2610. </currency>
  2611. <currency type="KHR">
  2612. <displayName>rijal</displayName>
  2613. <displayName count="few">kambođanska rijala</displayName>
  2614. <displayName count="many">kambođanskih rijala</displayName>
  2615. <displayName count="one">kambođanski rijal</displayName>
  2616. <displayName count="other">kambođanskih rijala</displayName>
  2617. </currency>
  2618. <currency type="KMF">
  2619. <displayName>komorski franak</displayName>
  2620. <displayName count="few">komorska franka</displayName>
  2621. <displayName count="many">komorskih franaka</displayName>
  2622. <displayName count="one">komorski franak</displayName>
  2623. <displayName count="other">komorskih franaka</displayName>
  2624. </currency>
  2625. <currency type="KPW">
  2626. <displayName>sjevernokorejski won</displayName>
  2627. <displayName count="few">sjevernokorejska wona</displayName>
  2628. <displayName count="many">sjevernokorejskih wona</displayName>
  2629. <displayName count="one">sjevernokorejski won</displayName>
  2630. <displayName count="other">sjevernokorejskih wona</displayName>
  2631. </currency>
  2632. <currency type="KRW">
  2633. <displayName>južnokorejski won</displayName>
  2634. <displayName count="few">južnokorejska wona</displayName>
  2635. <displayName count="many">južnokorejskih wona</displayName>
  2636. <displayName count="other">južnokorejskih wona</displayName>
  2637. </currency>
  2638. <currency type="KWD">
  2639. <displayName>kuvajtski dinar</displayName>
  2640. <displayName count="few">kuvajtska dinara</displayName>
  2641. <displayName count="many">kuvajtskih dinara</displayName>
  2642. <displayName count="one">kuvajtski dinar</displayName>
  2643. <displayName count="other">kuvajtskih dinara</displayName>
  2644. </currency>
  2645. <currency type="KYD">
  2646. <displayName>kajmanski dolar</displayName>
  2647. <displayName count="few">kajmanska dolara</displayName>
  2648. <displayName count="many">kajmanskih dolara</displayName>
  2649. <displayName count="one">kajmanski dolar</displayName>
  2650. <displayName count="other">kajmanskih dolara</displayName>
  2651. </currency>
  2652. <currency type="KZT">
  2653. <displayName>kazahstanski tenge</displayName>
  2654. <displayName count="few">kazahstanska tengea</displayName>
  2655. <displayName count="many">kazahstanskih tengea</displayName>
  2656. <displayName count="one">kazahstanski tenge</displayName>
  2657. <displayName count="other">kazahstanskih tengea</displayName>
  2658. </currency>
  2659. <currency type="LAK">
  2660. <displayName>kip</displayName>
  2661. <displayName count="few">laoska kipa</displayName>
  2662. <displayName count="many">laoskih kipa</displayName>
  2663. <displayName count="one">laoski kip</displayName>
  2664. <displayName count="other">laoskih kipa</displayName>
  2665. </currency>
  2666. <currency type="LBP">
  2667. <displayName>libanonska funta</displayName>
  2668. <displayName count="few">libanonske funte</displayName>
  2669. <displayName count="many">libanonskih funti</displayName>
  2670. <displayName count="one">libanonska funta</displayName>
  2671. <displayName count="other">libanonskih funti</displayName>
  2672. </currency>
  2673. <currency type="LKR">
  2674. <displayName>šrilanska rupija</displayName>
  2675. <displayName count="few">šrilankanske rupije</displayName>
  2676. <displayName count="many">šrilankanskih rupija</displayName>
  2677. <displayName count="one">šrilankanska rupija</displayName>
  2678. <displayName count="other">šrilankanskih rupija</displayName>
  2679. </currency>
  2680. <currency type="LRD">
  2681. <displayName>liberijski dolar</displayName>
  2682. <displayName count="few">liberijska dolara</displayName>
  2683. <displayName count="many">liberijskih dolara</displayName>
  2684. <displayName count="one">liberijski dolar</displayName>
  2685. <displayName count="other">liberijskih dolara</displayName>
  2686. </currency>
  2687. <currency type="LSL">
  2688. <displayName>loti</displayName>
  2689. <displayName count="few">lesoto lotija</displayName>
  2690. <displayName count="many">lesoto lotija</displayName>
  2691. <displayName count="one">lesoto loti</displayName>
  2692. <displayName count="other">lesoto lotija</displayName>
  2693. </currency>
  2694. <currency type="LTL">
  2695. <displayName>litavski litas</displayName>
  2696. <displayName count="few">litavska litasa</displayName>
  2697. <displayName count="many">litavskih litasa</displayName>
  2698. <displayName count="one">litavski litas</displayName>
  2699. <displayName count="other">litavskih litasa</displayName>
  2700. </currency>
  2701. <currency type="LTT">
  2702. <displayName>litavski talonas</displayName>
  2703. <displayName count="few">litavska talonasa</displayName>
  2704. <displayName count="many">litavskih talonasa</displayName>
  2705. <displayName count="one">litavski talonas</displayName>
  2706. <displayName count="other">litavskih talonasa</displayName>
  2707. </currency>
  2708. <currency type="LUC">
  2709. <displayName>luksemburški konvertibilni franak</displayName>
  2710. <displayName count="few">luksemburška konvertibilna franka</displayName>
  2711. <displayName count="many">luksemburških konvertibilnih franaka</displayName>
  2712. <displayName count="one">luksemburški konvertibilni franak</displayName>
  2713. <displayName count="other">luksemburških konvertibilnih franaka</displayName>
  2714. </currency>
  2715. <currency type="LUF">
  2716. <displayName>luksemburški franak</displayName>
  2717. <displayName count="few">luksemburška franka</displayName>
  2718. <displayName count="many">luksemburških franaka</displayName>
  2719. <displayName count="one">luksemburški franak</displayName>
  2720. <displayName count="other">luksemburških franaka</displayName>
  2721. </currency>
  2722. <currency type="LUL">
  2723. <displayName>Luksemburški financijski franak</displayName>
  2724. <displayName count="few">luksemburška financijska franka</displayName>
  2725. <displayName count="many">luksemburških financijskih franaka</displayName>
  2726. <displayName count="one">luksemburški financijski franak</displayName>
  2727. <displayName count="other">luksemburških financijskih franaka</displayName>
  2728. </currency>
  2729. <currency type="LVL">
  2730. <displayName>letonski lats</displayName>
  2731. <displayName count="few">letonska latsa</displayName>
  2732. <displayName count="many">letonskih latsa</displayName>
  2733. <displayName count="one">letonski lats</displayName>
  2734. <displayName count="other">letonskih latsa</displayName>
  2735. </currency>
  2736. <currency type="LVR">
  2737. <displayName>Latvian Ruble</displayName>
  2738. <displayName count="few">letonske rublje</displayName>
  2739. <displayName count="many">letonskih rublji</displayName>
  2740. <displayName count="one">letonska rublja</displayName>
  2741. <displayName count="other">letonskih rublji</displayName>
  2742. </currency>
  2743. <currency type="LYD">
  2744. <displayName>libijski dinar</displayName>
  2745. <displayName count="few">libijska dinara</displayName>
  2746. <displayName count="many">libijskih dinara</displayName>
  2747. <displayName count="one">libijski dinar</displayName>
  2748. <displayName count="other">libijskih dinara</displayName>
  2749. </currency>
  2750. <currency type="MAD">
  2751. <displayName>marokanski dirham</displayName>
  2752. <displayName count="few">marokanska dirhama</displayName>
  2753. <displayName count="many">marokanskih dirhama</displayName>
  2754. <displayName count="one">marokanski dirham</displayName>
  2755. <displayName count="other">marokanskih dirhama</displayName>
  2756. </currency>
  2757. <currency type="MAF">
  2758. <displayName>marokanski franak</displayName>
  2759. <displayName count="few">marokanska franka</displayName>
  2760. <displayName count="many">marokanskih franaka</displayName>
  2761. <displayName count="one">marokanski franak</displayName>
  2762. <displayName count="other">marokanskih franaka</displayName>
  2763. </currency>
  2764. <currency type="MDL">
  2765. <displayName>moldavski lej</displayName>
  2766. <displayName count="few">moldavska leja</displayName>
  2767. <displayName count="many">moldavskih leja</displayName>
  2768. <displayName count="one">moldavski lej</displayName>
  2769. <displayName count="other">moldavskih leja</displayName>
  2770. </currency>
  2771. <currency type="MGA">
  2772. <displayName>madagaskarski ariary</displayName>
  2773. <displayName count="few">madagaskarska ariarija</displayName>
  2774. <displayName count="many">madagaskarskih ariarija</displayName>
  2775. <displayName count="one">madagaskarski ariary</displayName>
  2776. <displayName count="other">madagaskarskih ariarija</displayName>
  2777. </currency>
  2778. <currency type="MGF">
  2779. <displayName>madagaskarski franak</displayName>
  2780. <displayName count="few">madagaskarska franka</displayName>
  2781. <displayName count="many">madagaskarskih franaka</displayName>
  2782. <displayName count="one">madagaskarski franak</displayName>
  2783. <displayName count="other">madagaskarskih franaka</displayName>
  2784. </currency>
  2785. <currency type="MKD">
  2786. <displayName>makedonski denar</displayName>
  2787. <displayName count="few">makedonska dinara</displayName>
  2788. <displayName count="many">makedonskih dinara</displayName>
  2789. <displayName count="one">makedonski dinar</displayName>
  2790. <displayName count="other">makedonskih dinara</displayName>
  2791. </currency>
  2792. <currency type="MLF">
  2793. <displayName>CFA franak</displayName>
  2794. <displayName count="few">malijska franka</displayName>
  2795. <displayName count="many">malijskih franaka</displayName>
  2796. <displayName count="one">malijski franak</displayName>
  2797. <displayName count="other">malijskih franaka</displayName>
  2798. </currency>
  2799. <currency type="MMK">
  2800. <displayName>Myanmar Kyat</displayName>
  2801. <displayName count="few">mjanmarska kjata</displayName>
  2802. <displayName count="many">mjanmarskih kjata</displayName>
  2803. <displayName count="one">mjanmarski kjat</displayName>
  2804. <displayName count="other">mjanmarskih kjata</displayName>
  2805. </currency>
  2806. <currency type="MNT">
  2807. <displayName>mongolski tugrik</displayName>
  2808. <displayName count="few">mongolska tugrika</displayName>
  2809. <displayName count="many">mongolskih tugrika</displayName>
  2810. <displayName count="one">mongolski tugrik</displayName>
  2811. <displayName count="other">mongolskih tugrika</displayName>
  2812. </currency>
  2813. <currency type="MOP">
  2814. <displayName>Macao Pataca</displayName>
  2815. <displayName count="few">pataka</displayName>
  2816. <displayName count="many">pataka</displayName>
  2817. <displayName count="one">patak</displayName>
  2818. <displayName count="other">pataka</displayName>
  2819. </currency>
  2820. <currency type="MRO">
  2821. <displayName>mauritanijska ouguja</displayName>
  2822. <displayName count="few">mauritanijske ouguje</displayName>
  2823. <displayName count="many">mauritanijskih ouguja</displayName>
  2824. <displayName count="one">mauritanijska ouguja</displayName>
  2825. <displayName count="other">mauritanijskih ouguja</displayName>
  2826. </currency>
  2827. <currency type="MTL">
  2828. <displayName>malteška lira</displayName>
  2829. <displayName count="few">malteške lire</displayName>
  2830. <displayName count="many">malteških lira</displayName>
  2831. <displayName count="one">malteška lira</displayName>
  2832. <displayName count="other">malteških lira</displayName>
  2833. </currency>
  2834. <currency type="MTP">
  2835. <displayName>malteška funta</displayName>
  2836. <displayName count="few">malteške funte</displayName>
  2837. <displayName count="many">malteških funti</displayName>
  2838. <displayName count="one">malteška funta</displayName>
  2839. <displayName count="other">malteških funti</displayName>
  2840. </currency>
  2841. <currency type="MUR">
  2842. <displayName>mauricijska rupija</displayName>
  2843. <displayName count="few">mauricijske rupije</displayName>
  2844. <displayName count="many">mauricijskih rupija</displayName>
  2845. <displayName count="one">mauricijska rupija</displayName>
  2846. <displayName count="other">mauricijskih rupija</displayName>
  2847. </currency>
  2848. <currency type="MVR">
  2849. <displayName>maldivijska rufija</displayName>
  2850. <displayName count="few">maldivijske rufije</displayName>
  2851. <displayName count="many">maldivijskih rufija</displayName>
  2852. <displayName count="one">maldivijska rufija</displayName>
  2853. <displayName count="other">maldivijskih rufija</displayName>
  2854. </currency>
  2855. <currency type="MWK">
  2856. <displayName>Malawi Kwacha</displayName>
  2857. <displayName count="few">malavijske kvače</displayName>
  2858. <displayName count="many">malavijskih kvača</displayName>
  2859. <displayName count="one">malavijska kvača</displayName>
  2860. <displayName count="other">malavijskih kvača</displayName>
  2861. </currency>
  2862. <currency type="MXN">
  2863. <displayName>meksički pezo</displayName>
  2864. <displayName count="few">meksička peza</displayName>
  2865. <displayName count="many">meksičkih peza</displayName>
  2866. <displayName count="one">meksički pezo</displayName>
  2867. <displayName count="other">meksičkih peza</displayName>
  2868. </currency>
  2869. <currency type="MXP">
  2870. <displayName>meksički srebrni pezo (1861-1992)</displayName>
  2871. <displayName count="few">meksička srebrna peza (MXP)</displayName>
  2872. <displayName count="many">meksičkih srebrnih peza (MXP)</displayName>
  2873. <displayName count="one">meksički srebrni pezo (MXP)</displayName>
  2874. <displayName count="other">meksičkih srebrnih peza (MXP)</displayName>
  2875. </currency>
  2876. <currency type="MXV">
  2877. <displayName>Mexican Unidad de Inversion (UDI)</displayName>
  2878. <displayName count="few">Mexican unidads de inversion (UDI)</displayName>
  2879. <displayName count="many">Mexican unidads de inversion (UDI)</displayName>
  2880. <displayName count="one">Mexican unidads de inversion (UDI)</displayName>
  2881. <displayName count="other">Mexican unidads de inversion (UDI)</displayName>
  2882. </currency>
  2883. <currency type="MYR">
  2884. <displayName>malezijski ringit</displayName>
  2885. <displayName count="few">malezijska ringita</displayName>
  2886. <displayName count="many">malezijskih ringita</displayName>
  2887. <displayName count="one">malezijski ringit</displayName>
  2888. <displayName count="other">malezijskih ringita</displayName>
  2889. </currency>
  2890. <currency type="MZE">
  2891. <displayName>mozambijski eskudo</displayName>
  2892. <displayName count="few">mozambijska eskuda</displayName>
  2893. <displayName count="many">mozambijskih eskuda</displayName>
  2894. <displayName count="one">mozambijski eskudo</displayName>
  2895. <displayName count="other">mozambijskih eskuda</displayName>
  2896. </currency>
  2897. <currency type="MZM">
  2898. <displayName>stari mozambijski metikal</displayName>
  2899. <displayName count="few">stara mozambijska metikala</displayName>
  2900. <displayName count="many">starih mozambijskih metikala</displayName>
  2901. <displayName count="one">stari mozambijski metikal</displayName>
  2902. <displayName count="other">starih mozambijskih metikala</displayName>
  2903. </currency>
  2904. <currency type="MZN">
  2905. <displayName>mozambijski metikal</displayName>
  2906. <displayName count="few">mozambijska metikala</displayName>
  2907. <displayName count="many">mozambijskih metikala</displayName>
  2908. <displayName count="one">mozambijski metikal</displayName>
  2909. <displayName count="other">mozambijskih metikala</displayName>
  2910. </currency>
  2911. <currency type="NAD">
  2912. <displayName>namibijski dolar</displayName>
  2913. <displayName count="few">namibijska dolara</displayName>
  2914. <displayName count="many">namibijskih dolara</displayName>
  2915. <displayName count="one">namibijski dolar</displayName>
  2916. <displayName count="other">namibijskih dolara</displayName>
  2917. </currency>
  2918. <currency type="NGN">
  2919. <displayName>nigerijska naira</displayName>
  2920. <displayName count="few">nigerijska naira</displayName>
  2921. <displayName count="many">nigerijskih naira</displayName>
  2922. <displayName count="one">nigerijski nair</displayName>
  2923. <displayName count="other">nigerijskih naira</displayName>
  2924. </currency>
  2925. <currency type="NIC">
  2926. <displayName>nikaragvanska kordoba</displayName>
  2927. <displayName count="few">nikaragvanske kordobe</displayName>
  2928. <displayName count="many">nikaragvanskih kordoba</displayName>
  2929. <displayName count="one">nikaragvanska kordoba</displayName>
  2930. <displayName count="other">nikaragvanskih kordoba</displayName>
  2931. </currency>
  2932. <currency type="NIO">
  2933. <displayName>nikaragvanska zlatna kordoba</displayName>
  2934. <displayName count="few">nikaragvanske zlatne kordobe</displayName>
  2935. <displayName count="many">nikaragvanskih zlatnih kordoba</displayName>
  2936. <displayName count="one">nikaragvanska zlatna kordoba</displayName>
  2937. <displayName count="other">nikaragvanskih zlatnih kordoba</displayName>
  2938. </currency>
  2939. <currency type="NLG">
  2940. <displayName>nizozemski gulden</displayName>
  2941. <displayName count="few">nizozemska guldena</displayName>
  2942. <displayName count="many">nizozemskih guldena</displayName>
  2943. <displayName count="one">nizozemski gulden</displayName>
  2944. <displayName count="other">nizozemskih guldena</displayName>
  2945. </currency>
  2946. <currency type="NOK">
  2947. <displayName>norveška kruna</displayName>
  2948. <displayName count="few">norveške krune</displayName>
  2949. <displayName count="many">norveških kruna</displayName>
  2950. <displayName count="one">norveška kruna</displayName>
  2951. <displayName count="other">norveških kruna</displayName>
  2952. </currency>
  2953. <currency type="NPR">
  2954. <displayName>nepalska rupija</displayName>
  2955. <displayName count="few">nepalske rupije</displayName>
  2956. <displayName count="many">nepalskih rupija</displayName>
  2957. <displayName count="one">nepalska rupija</displayName>
  2958. <displayName count="other">nepalskih rupija</displayName>
  2959. </currency>
  2960. <currency type="NZD">
  2961. <displayName>novozelandski dolar</displayName>
  2962. <displayName count="few">novozelandska dolara</displayName>
  2963. <displayName count="many">novozelandskih dolara</displayName>
  2964. <displayName count="one">novozelandski dolar</displayName>
  2965. <displayName count="other">novozelandskih dolara</displayName>
  2966. </currency>
  2967. <currency type="OMR">
  2968. <displayName>omanski rijal</displayName>
  2969. <displayName count="few">omanska rijala</displayName>
  2970. <displayName count="many">omanskih rijala</displayName>
  2971. <displayName count="one">omanski rijal</displayName>
  2972. <displayName count="other">omanskih rijala</displayName>
  2973. </currency>
  2974. <currency type="PAB">
  2975. <displayName>balboa</displayName>
  2976. <displayName count="few">panamske balboe</displayName>
  2977. <displayName count="many">panamskih balboa</displayName>
  2978. <displayName count="one">panamska balboa</displayName>
  2979. <displayName count="other">panamskih balboa</displayName>
  2980. </currency>
  2981. <currency type="PEI">
  2982. <displayName>peruanski inti</displayName>
  2983. <displayName count="few">peruanske inti</displayName>
  2984. <displayName count="many">peruanskih inti</displayName>
  2985. <displayName count="one">peruanski inti</displayName>
  2986. <displayName count="other">peruanskih inti</displayName>
  2987. </currency>
  2988. <currency type="PEN">
  2989. <displayName>novi sol</displayName>
  2990. <displayName count="few">peruanska nova sola</displayName>
  2991. <displayName count="many">peruanskih novih sola</displayName>
  2992. <displayName count="one">peruanski novi sol</displayName>
  2993. <displayName count="other">peruanskih novih sola</displayName>
  2994. </currency>
  2995. <currency type="PES">
  2996. <displayName>sol</displayName>
  2997. <displayName count="few">peruanska sola</displayName>
  2998. <displayName count="many">peruanskih sola</displayName>
  2999. <displayName count="one">peruanski sol</displayName>
  3000. <displayName count="other">peruanskih sola</displayName>
  3001. </currency>
  3002. <currency type="PGK">
  3003. <displayName>kina Papue Nove Gvineje</displayName>
  3004. <displayName count="few">kine Papue Nove Gvineje</displayName>
  3005. <displayName count="many">kina Papue Nove Gvineje</displayName>
  3006. <displayName count="one">kina Papue Nove Gvineje</displayName>
  3007. <displayName count="other">kina Papue Nove Gvineje</displayName>
  3008. </currency>
  3009. <currency type="PHP">
  3010. <displayName>filipinski pezo</displayName>
  3011. <displayName count="few">filipinska peza</displayName>
  3012. <displayName count="many">filipinskih peza</displayName>
  3013. <displayName count="one">filipinski pezo</displayName>
  3014. <displayName count="other">filipinskih peza</displayName>
  3015. </currency>
  3016. <currency type="PKR">
  3017. <displayName>pakistanska rupija</displayName>
  3018. <displayName count="few">pakistanske rupije</displayName>
  3019. <displayName count="many">pakistanskih rupija</displayName>
  3020. <displayName count="one">pakistanska rupija</displayName>
  3021. <displayName count="other">pakistanskih rupija</displayName>
  3022. </currency>
  3023. <currency type="PLN">
  3024. <displayName>poljska zlota</displayName>
  3025. <displayName count="few">poljske zlote</displayName>
  3026. <displayName count="many">poljskih zlota</displayName>
  3027. <displayName count="one">poljska zlota</displayName>
  3028. <displayName count="other">poljskih zlota</displayName>
  3029. </currency>
  3030. <currency type="PLZ">
  3031. <displayName>Poljska zlota (1950-1995)</displayName>
  3032. <displayName count="few">poljske zlote (PLZ)</displayName>
  3033. <displayName count="many">poljskih zlota (PLZ)</displayName>
  3034. <displayName count="one">poljska zlota (PLZ)</displayName>
  3035. <displayName count="other">poljskih zlota (PLZ)</displayName>
  3036. </currency>
  3037. <currency type="PTE">
  3038. <displayName>portugalski eskudo</displayName>
  3039. <displayName count="few">portugalska eskuda</displayName>
  3040. <displayName count="many">portugalskih eskuda</displayName>
  3041. <displayName count="one">portugalski eskudo</displayName>
  3042. <displayName count="other">portugalskih eskuda</displayName>
  3043. </currency>
  3044. <currency type="PYG">
  3045. <displayName>gvarani</displayName>
  3046. <displayName count="few">paragvajska gvaranija</displayName>
  3047. <displayName count="many">paragvajskih gvaranija</displayName>
  3048. <displayName count="one">paragvajski gvarani</displayName>
  3049. <displayName count="other">paragvajskih gvaranija</displayName>
  3050. </currency>
  3051. <currency type="QAR">
  3052. <displayName>katarski rial</displayName>
  3053. <displayName count="few">katarska rijala</displayName>
  3054. <displayName count="many">katarskih rijala</displayName>
  3055. <displayName count="one">katarski rijal</displayName>
  3056. <displayName count="other">katarskih rijala</displayName>
  3057. </currency>
  3058. <currency type="RHD">
  3059. <displayName>rodezijski dolar</displayName>
  3060. <displayName count="few">rodezijska dolara</displayName>
  3061. <displayName count="many">rodezijskih dolara</displayName>
  3062. <displayName count="one">rodezijski dolar</displayName>
  3063. <displayName count="other">rodezijskih dolara</displayName>
  3064. </currency>
  3065. <currency type="ROL">
  3066. <displayName>starorumunjski lek</displayName>
  3067. <displayName count="few">stara rumunjska leja</displayName>
  3068. <displayName count="many">starih rumunjskih leja</displayName>
  3069. <displayName count="one">stari rumunjski lej</displayName>
  3070. <displayName count="other">starih rumunjskih leja</displayName>
  3071. </currency>
  3072. <currency type="RON">
  3073. <displayName>rumunjski lev</displayName>
  3074. <displayName count="few">nova rumunjska leja</displayName>
  3075. <displayName count="many">novih rumunjskih leja</displayName>
  3076. <displayName count="one">novi rumunjski lej</displayName>
  3077. <displayName count="other">novih rumunjskih leja</displayName>
  3078. </currency>
  3079. <currency type="RSD">
  3080. <displayName>srpski dinar</displayName>
  3081. <displayName count="few">srpska dinara</displayName>
  3082. <displayName count="many">srpskih dinara</displayName>
  3083. <displayName count="one">srpski dinar</displayName>
  3084. <displayName count="other">srpskih dinara</displayName>
  3085. </currency>
  3086. <currency type="RUB">
  3087. <displayName>ruska rublja</displayName>
  3088. <displayName count="few">ruske rublje</displayName>
  3089. <displayName count="many">ruskih rublji</displayName>
  3090. <displayName count="one">ruska rublja</displayName>
  3091. <displayName count="other">ruskih rublji</displayName>
  3092. </currency>
  3093. <currency type="RUR">
  3094. <displayName>ruska rublja (1991.-1998.)</displayName>
  3095. <displayName count="few">ruske rublje (RUR)</displayName>
  3096. <displayName count="many">ruskih rublji (RUR)</displayName>
  3097. <displayName count="one">ruska rublja (RUR)</displayName>
  3098. <displayName count="other">ruskih rublji (RUR)</displayName>
  3099. </currency>
  3100. <currency type="RWF">
  3101. <displayName>ruandski franak</displayName>
  3102. <displayName count="few">ruandska franka</displayName>
  3103. <displayName count="many">ruandskih franaka</displayName>
  3104. <displayName count="one">ruandski franak</displayName>
  3105. <displayName count="other">ruandskih franaka</displayName>
  3106. </currency>
  3107. <currency type="SAR">
  3108. <displayName>saudijski rial</displayName>
  3109. <displayName count="few">saudijska rijala</displayName>
  3110. <displayName count="many">saudijskih rijala</displayName>
  3111. <displayName count="one">saudijski rijal</displayName>
  3112. <displayName count="other">saudijskih rijala</displayName>
  3113. </currency>
  3114. <currency type="SBD">
  3115. <displayName>solmonskootočni dolar</displayName>
  3116. <displayName count="few">solomonskootočna dolara</displayName>
  3117. <displayName count="many">solomonskootočnih dolara</displayName>
  3118. <displayName count="one">solomonskootočni dolar</displayName>
  3119. <displayName count="other">solomonskootočnih dolara</displayName>
  3120. </currency>
  3121. <currency type="SCR">
  3122. <displayName>sejšelska rupija</displayName>
  3123. <displayName count="few">sejšelske rupije</displayName>
  3124. <displayName count="many">sejšelskih rupija</displayName>
  3125. <displayName count="one">sejšelska rupija</displayName>
  3126. <displayName count="other">sejšelskih rupija</displayName>
  3127. </currency>
  3128. <currency type="SDD">
  3129. <displayName>sudanski dinar</displayName>
  3130. <displayName count="few">sudanska dinara</displayName>
  3131. <displayName count="many">sudanskih dinara</displayName>
  3132. <displayName count="one">sudanski dinar</displayName>
  3133. <displayName count="other">sudanskih dinara</displayName>
  3134. </currency>
  3135. <currency type="SDG">
  3136. <displayName>sudanska funta</displayName>
  3137. <displayName count="few">sudanske funte</displayName>
  3138. <displayName count="many">sudanskih funti</displayName>
  3139. <displayName count="one">sudanska funta</displayName>
  3140. <displayName count="other">sudanskih funti</displayName>
  3141. </currency>
  3142. <currency type="SDP">
  3143. <displayName>stara sudanska funta</displayName>
  3144. <displayName count="few">stare sudanske funte</displayName>
  3145. <displayName count="many">starih sudanskih funti</displayName>
  3146. <displayName count="one">stara sudanska funta</displayName>
  3147. <displayName count="other">starih sudanskih funti</displayName>
  3148. </currency>
  3149. <currency type="SEK">
  3150. <displayName>švedska kruna</displayName>
  3151. <displayName count="few">švedske krune</displayName>
  3152. <displayName count="many">švedskih kruna</displayName>
  3153. <displayName count="one">švedska kruna</displayName>
  3154. <displayName count="other">švedskih kruna</displayName>
  3155. </currency>
  3156. <currency type="SGD">
  3157. <displayName>singapurski dolar</displayName>
  3158. <displayName count="few">singapurska dolara</displayName>
  3159. <displayName count="many">singapurskih dolara</displayName>
  3160. <displayName count="one">singapurski dolar</displayName>
  3161. <displayName count="other">singapurskih dolara</displayName>
  3162. </currency>
  3163. <currency type="SHP">
  3164. <displayName>svetohelenska funta</displayName>
  3165. <displayName count="few">svetohelenske funte</displayName>
  3166. <displayName count="many">svetohelenskih funti</displayName>
  3167. <displayName count="one">svetohelenska funta</displayName>
  3168. <displayName count="other">svetohelenskih funti</displayName>
  3169. </currency>
  3170. <currency type="SIT">
  3171. <displayName>slovenski tolar</displayName>
  3172. <displayName count="few">slovenska tolara</displayName>
  3173. <displayName count="many">slovenskih tolara</displayName>
  3174. <displayName count="one">slovenski tolar</displayName>
  3175. <displayName count="other">slovenskih tolara</displayName>
  3176. </currency>
  3177. <currency type="SKK">
  3178. <displayName>slovačka kruna</displayName>
  3179. <displayName count="few">slovačke krune</displayName>
  3180. <displayName count="many">slovačkih kruna</displayName>
  3181. <displayName count="one">slovačka kruna</displayName>
  3182. <displayName count="other">slovačkih kruna</displayName>
  3183. </currency>
  3184. <currency type="SLL">
  3185. <displayName>sijeraleonski leone</displayName>
  3186. <displayName count="few">sijeraleonske leone</displayName>
  3187. <displayName count="many">sijeraleonskih leona</displayName>
  3188. <displayName count="one">sijeraleonski leon</displayName>
  3189. <displayName count="other">sijeraleonskih leona</displayName>
  3190. </currency>
  3191. <currency type="SOS">
  3192. <displayName>somalijski šiling</displayName>
  3193. <displayName count="few">somalijska šilinga</displayName>
  3194. <displayName count="many">somalijskih šilinga</displayName>
  3195. <displayName count="one">somalijski šiling</displayName>
  3196. <displayName count="other">somalijskih šilinga</displayName>
  3197. </currency>
  3198. <currency type="SRD">
  3199. <displayName>surinamski dolar</displayName>
  3200. <displayName count="few">surinamska dolara</displayName>
  3201. <displayName count="many">surinamskih dolara</displayName>
  3202. <displayName count="one">surinamski dolar</displayName>
  3203. <displayName count="other">surinamskih dolara</displayName>
  3204. </currency>
  3205. <currency type="SRG">
  3206. <displayName>surinamski gulden</displayName>
  3207. <displayName count="few">surinamska guldena</displayName>
  3208. <displayName count="many">surinamskih guldena</displayName>
  3209. <displayName count="one">surinamski gulden</displayName>
  3210. <displayName count="other">surinamskih guldena</displayName>
  3211. </currency>
  3212. <currency type="STD">
  3213. <displayName>dobra Svetog Tome i Principa</displayName>
  3214. <displayName count="few">dobra Svetog Tome i Principa</displayName>
  3215. <displayName count="many">dobra Svetog Tome i Principa</displayName>
  3216. <displayName count="one">dobra Svetog Tome i Principa</displayName>
  3217. <displayName count="other">dobra Svetog Tome i Principa</displayName>
  3218. </currency>
  3219. <currency type="SUR">
  3220. <displayName>sovjetska rublja</displayName>
  3221. <displayName count="few">sovjetske rublje</displayName>
  3222. <displayName count="many">sovjetskih rublji</displayName>
  3223. <displayName count="one">sovjetska rublja</displayName>
  3224. <displayName count="other">sovjetskih rublji</displayName>
  3225. </currency>
  3226. <currency type="SVC">
  3227. <displayName>salvadorski kolon</displayName>
  3228. <displayName count="few">salvadorska kolona</displayName>
  3229. <displayName count="many">salvadorskih kolona</displayName>
  3230. <displayName count="one">salvadorski kolon</displayName>
  3231. <displayName count="other">salvadorskih kolona</displayName>
  3232. </currency>
  3233. <currency type="SYP">
  3234. <displayName>sirijska funta</displayName>
  3235. <displayName count="few">sirijske funte</displayName>
  3236. <displayName count="many">sirijskih funti</displayName>
  3237. <displayName count="one">sirijska funta</displayName>
  3238. <displayName count="other">sirijskih funti</displayName>
  3239. </currency>
  3240. <currency type="SZL">
  3241. <displayName>svazi lilangeni</displayName>
  3242. <displayName count="few">svazi lilangena</displayName>
  3243. <displayName count="many">svazi lilangena</displayName>
  3244. <displayName count="one">svazi lilangeni</displayName>
  3245. <displayName count="other">svazi lilangena</displayName>
  3246. </currency>
  3247. <currency type="THB">
  3248. <displayName>tajlandski bat</displayName>
  3249. <displayName count="few">tajlandska bahta</displayName>
  3250. <displayName count="many">tajlandskih bahta</displayName>
  3251. <displayName count="one">tajlandski baht</displayName>
  3252. <displayName count="other">tajlandskih bahta</displayName>
  3253. </currency>
  3254. <currency type="TJR">
  3255. <displayName>tajikistanska rublja</displayName>
  3256. <displayName count="few">tadžikistanske rublje</displayName>
  3257. <displayName count="many">tadžikistanskih rublji</displayName>
  3258. <displayName count="one">tadžikistanska rublja</displayName>
  3259. <displayName count="other">tadžikistanskih rublji</displayName>
  3260. </currency>
  3261. <currency type="TJS">
  3262. <displayName>tadžikistanski somoni</displayName>
  3263. <displayName count="few">tadžikistanska somona</displayName>
  3264. <displayName count="many">tadžikistanskih somona</displayName>
  3265. <displayName count="one">tadžikistanski somoni</displayName>
  3266. <displayName count="other">tadžikistanskih somona</displayName>
  3267. </currency>
  3268. <currency type="TMM">
  3269. <displayName>turkmenistanski manat</displayName>
  3270. <displayName count="few">turkmenistanska manata</displayName>
  3271. <displayName count="many">turkmenistanskih manata</displayName>
  3272. <displayName count="one">turkmenistanski manat</displayName>
  3273. <displayName count="other">turkmenistanskih manata</displayName>
  3274. </currency>
  3275. <currency type="TND">
  3276. <displayName>tuniski dinar</displayName>
  3277. <displayName count="few">tuniska dinara</displayName>
  3278. <displayName count="many">tuniskih dinara</displayName>
  3279. <displayName count="one">tuniski dinar</displayName>
  3280. <displayName count="other">tuniskih dinara</displayName>
  3281. </currency>
  3282. <currency type="TOP">
  3283. <displayName>tongaška pa'anga</displayName>
  3284. <displayName count="few">tongaške pa'ange</displayName>
  3285. <displayName count="many">tongaških pa'angi</displayName>
  3286. <displayName count="one">tongaška pa'anga</displayName>
  3287. <displayName count="other">tongaških pa'angi</displayName>
  3288. </currency>
  3289. <currency type="TPE">
  3290. <displayName>timorski eskudo</displayName>
  3291. <displayName count="few">timorska eskuda</displayName>
  3292. <displayName count="many">timorskih eskuda</displayName>
  3293. <displayName count="one">timorski eskudo</displayName>
  3294. <displayName count="other">timorskih eskuda</displayName>
  3295. </currency>
  3296. <currency type="TRL">
  3297. <displayName>stara turska lira</displayName>
  3298. <displayName count="few">stare turske lire</displayName>
  3299. <displayName count="many">starih turskih lira</displayName>
  3300. <displayName count="one">stara turska lira</displayName>
  3301. <displayName count="other">starih turskih lira</displayName>
  3302. </currency>
  3303. <currency type="TRY">
  3304. <displayName>turska lira</displayName>
  3305. <displayName count="few">turske lire</displayName>
  3306. <displayName count="many">turskih lira</displayName>
  3307. <displayName count="one">turska lira</displayName>
  3308. <displayName count="other">turskih lira</displayName>
  3309. </currency>
  3310. <currency type="TTD">
  3311. <displayName>trininadtobaški dolar</displayName>
  3312. <displayName count="few">trinidadtobaška dolara</displayName>
  3313. <displayName count="many">trinidadtobaških dolara</displayName>
  3314. <displayName count="one">trinidadtobaški dolar</displayName>
  3315. <displayName count="other">trinidadtobaških dolara</displayName>
  3316. </currency>
  3317. <currency type="TWD">
  3318. <displayName>Novotajvanski dolar</displayName>
  3319. <displayName count="few">novotajvanska dolara</displayName>
  3320. <displayName count="many">novotajvanskih dolara</displayName>
  3321. <displayName count="one">novotajvanski dolar</displayName>
  3322. <displayName count="other">novotajvanskih dolara</displayName>
  3323. </currency>
  3324. <currency type="TZS">
  3325. <displayName>tanzanijski šiling</displayName>
  3326. <displayName count="few">tanzanijska šilinga</displayName>
  3327. <displayName count="many">tanzanijskih šilinga</displayName>
  3328. <displayName count="one">tanzanijski šiling</displayName>
  3329. <displayName count="other">tanzanijskih šilinga</displayName>
  3330. </currency>
  3331. <currency type="UAH">
  3332. <displayName>ukrajinska hrivnja</displayName>
  3333. <displayName count="few">ukrajinske hrivnje</displayName>
  3334. <displayName count="many">ukrajinskih hrivnji</displayName>
  3335. <displayName count="one">ukrajinska hrivnja</displayName>
  3336. <displayName count="other">ukrajinskih hrivnji</displayName>
  3337. </currency>
  3338. <currency type="UAK">
  3339. <displayName>ukrajinski karbovanet</displayName>
  3340. <displayName count="few">ukrajinska karbovantsiva</displayName>
  3341. <displayName count="many">ukrajinskih karbovantsiva</displayName>
  3342. <displayName count="one">ukrajinski karbovantsiv</displayName>
  3343. <displayName count="other">ukrajinskih karbovantsiva</displayName>
  3344. </currency>
  3345. <currency type="UGS">
  3346. <displayName>ugandski šiling (1966.-1987.)</displayName>
  3347. <displayName count="few">ugandska šilinga (UGS)</displayName>
  3348. <displayName count="many">ugandskih šilinga (UGS)</displayName>
  3349. <displayName count="one">ugandski šiling (UGS)</displayName>
  3350. <displayName count="other">ugandskih šilinga (UGS)</displayName>
  3351. </currency>
  3352. <currency type="UGX">
  3353. <displayName>ugandski šiling</displayName>
  3354. <displayName count="few">ugandska šilinga</displayName>
  3355. <displayName count="many">ugandskih šilinga</displayName>
  3356. <displayName count="one">ugandski šiling</displayName>
  3357. <displayName count="other">ugandskih šilinga</displayName>
  3358. </currency>
  3359. <currency type="USD">
  3360. <displayName>američki dolar</displayName>
  3361. <displayName count="few">američka dolara</displayName>
  3362. <displayName count="many">američkih dolara</displayName>
  3363. <displayName count="one">američki dolar</displayName>
  3364. <displayName count="other">američkih dolara</displayName>
  3365. <symbol>$</symbol>
  3366. </currency>
  3367. <currency type="USN">
  3368. <displayName>američki dolar (sljedeći dan)</displayName>
  3369. <displayName count="few">američka dolara (sljedeći dan)</displayName>
  3370. <displayName count="many">američkih dolara (sljedeći dan)</displayName>
  3371. <displayName count="one">američki dolar (sljedeći dan)</displayName>
  3372. <displayName count="other">američkih dolara (sljedeći dan)</displayName>
  3373. </currency>
  3374. <currency type="USS">
  3375. <displayName>američki dolar (isti dan)</displayName>
  3376. <displayName count="few">američka dolara (isti dan)</displayName>
  3377. <displayName count="many">američkih dolara (isti dan)</displayName>
  3378. <displayName count="one">američki dolar (isti dan)</displayName>
  3379. <displayName count="other">američkih dolara (isti dan)</displayName>
  3380. </currency>
  3381. <currency type="UYI">
  3382. <displayName>urugvajski pezo en unidades indexadas</displayName>
  3383. <displayName count="few">urugvajska pesosa en unidades indexadas</displayName>
  3384. <displayName count="many">urugvajskih pesosa en unidades indexadas</displayName>
  3385. <displayName count="one">urugvajski pesos en unidades indexadas</displayName>
  3386. <displayName count="other">urugvajskih pesosa en unidades indexadas</displayName>
  3387. </currency>
  3388. <currency type="UYP">
  3389. <displayName>urugvajski pezo (1975.-1993.)</displayName>
  3390. <displayName count="few">urugvajska peza (UYP)</displayName>
  3391. <displayName count="many">urugvajskih peza (UYP)</displayName>
  3392. <displayName count="one">urugvajski pezo (UYP)</displayName>
  3393. <displayName count="other">urugvajskih peza (UYP)</displayName>
  3394. </currency>
  3395. <currency type="UYU">
  3396. <displayName>urugvajski pezo</displayName>
  3397. <displayName count="few">urugvajska pezosa</displayName>
  3398. <displayName count="many">urugvajskih pezosa</displayName>
  3399. <displayName count="one">urugvajski pezo</displayName>
  3400. <displayName count="other">urugvajskih pezosa</displayName>
  3401. </currency>
  3402. <currency type="UZS">
  3403. <displayName>uzbekistanski som</displayName>
  3404. <displayName count="few">uzbekistanska soma</displayName>
  3405. <displayName count="many">uzbekistanskih soma</displayName>
  3406. <displayName count="one">uzbekistanski som</displayName>
  3407. <displayName count="other">uzbekistanskih soma</displayName>
  3408. </currency>
  3409. <currency type="VEB">
  3410. <displayName>venezuelanski bolivar</displayName>
  3411. <displayName count="few">venezuelanska bolivara</displayName>
  3412. <displayName count="many">vezuelanskih bolivara</displayName>
  3413. <displayName count="one">venezuelanski bolivar</displayName>
  3414. <displayName count="other">venezuelanskih bolivara</displayName>
  3415. </currency>
  3416. <currency type="VEF">
  3417. <displayName>venezuelanski bolivar fuerte</displayName>
  3418. <displayName count="few">venezuelanska bolivara fuertes</displayName>
  3419. <displayName count="many">venezuelanskih bolivara fuertes</displayName>
  3420. <displayName count="one">venezuelanski bolivar fuertes</displayName>
  3421. <displayName count="other">venezuelanskih bolivara fuertes</displayName>
  3422. </currency>
  3423. <currency type="VND">
  3424. <displayName>vijetnamski dong</displayName>
  3425. <displayName count="few">vijetnamska donga</displayName>
  3426. <displayName count="many">vijetnamskih donga</displayName>
  3427. <displayName count="one">vijetnamski dong</displayName>
  3428. <displayName count="other">vijetnamskih donga</displayName>
  3429. </currency>
  3430. <currency type="VUV">
  3431. <displayName>vanuatuški vatu</displayName>
  3432. <displayName count="few">vanuatska vatua</displayName>
  3433. <displayName count="many">vanuatskih vatua</displayName>
  3434. <displayName count="one">vanuatski vatu</displayName>
  3435. <displayName count="other">vanuatskih vatua</displayName>
  3436. </currency>
  3437. <currency type="WST">
  3438. <displayName>samoanska tala</displayName>
  3439. <displayName count="few">samoanske tale</displayName>
  3440. <displayName count="many">samoanskih tala</displayName>
  3441. <displayName count="one">samoanska tala</displayName>
  3442. <displayName count="other">samoanskih tala</displayName>
  3443. </currency>
  3444. <currency type="XAF">
  3445. <displayName>CFA franak BEAC</displayName>
  3446. <displayName count="few">CFA franka BEAC</displayName>
  3447. <displayName count="many">CFA franaka BEAC</displayName>
  3448. <displayName count="one">CFA franak BEAC</displayName>
  3449. <displayName count="other">CFA franaka BEAC</displayName>
  3450. </currency>
  3451. <currency type="XAG">
  3452. <displayName>srebro</displayName>
  3453. <displayName count="few">srebra</displayName>
  3454. <displayName count="many">srebra</displayName>
  3455. <displayName count="one">srebro</displayName>
  3456. <displayName count="other">srebra</displayName>
  3457. </currency>
  3458. <currency type="XAU">
  3459. <displayName>zlato</displayName>
  3460. <displayName count="few">zlata</displayName>
  3461. <displayName count="many">zlata</displayName>
  3462. <displayName count="one">zlato</displayName>
  3463. <displayName count="other">zlata</displayName>
  3464. </currency>
  3465. <currency type="XBA">
  3466. <displayName>Europska složena jedinica</displayName>
  3467. <displayName count="few">europske složene jedinice</displayName>
  3468. <displayName count="many">europskih složenih jedinica</displayName>
  3469. <displayName count="one">europska složena jedinica</displayName>
  3470. <displayName count="other">europskih složenih jedinica</displayName>
  3471. </currency>
  3472. <currency type="XBB">
  3473. <displayName>Europska monetarna jedinica</displayName>
  3474. <displayName count="few">europske monetarne jedinice</displayName>
  3475. <displayName count="many">europskih monetarnih jedinica</displayName>
  3476. <displayName count="one">europska monetarna jedinica</displayName>
  3477. <displayName count="other">europskih monetarnih jedinica</displayName>
  3478. </currency>
  3479. <currency type="XBC">
  3480. <displayName>europska obračunska jedinica (XBC)</displayName>
  3481. <displayName count="few">europske obračunske jedinice (XBC)</displayName>
  3482. <displayName count="many">europskih obračunskih jedinica (XBC)</displayName>
  3483. <displayName count="one">europska obračunska jedinica (XBC)</displayName>
  3484. <displayName count="other">europskih obračunskih jedinica (XBC)</displayName>
  3485. </currency>
  3486. <currency type="XBD">
  3487. <displayName>europska obračunska jedinica (XBD)</displayName>
  3488. <displayName count="few">europske obračunske jedinice (XBD)</displayName>
  3489. <displayName count="many">europskih obračunskih jedinica (XBD)</displayName>
  3490. <displayName count="one">europska obračunska jedinica (XBD)</displayName>
  3491. <displayName count="other">europskih obračunskih jedinica (XBD)</displayName>
  3492. </currency>
  3493. <currency type="XCD">
  3494. <displayName>istočnokaripski dolar</displayName>
  3495. <displayName count="few">istočnokaripska dolara</displayName>
  3496. <displayName count="many">istočnokaripskih dolara</displayName>
  3497. <displayName count="one">istočnokaripski dolar</displayName>
  3498. <displayName count="other">istočnokaripskih dolara</displayName>
  3499. </currency>
  3500. <currency type="XDR">
  3501. <displayName>posebna crtaća prava</displayName>
  3502. <displayName count="few">poseebna crtaća prava</displayName>
  3503. <displayName count="many">posebnih crtaćih prava</displayName>
  3504. <displayName count="one">posebno crtaće pravo</displayName>
  3505. <displayName count="other">posebnih crtaćih prava</displayName>
  3506. </currency>
  3507. <currency type="XEU">
  3508. <displayName>europska monetarna jedinica (ECU)</displayName>
  3509. <displayName count="few">europske monetarne jedinice (ECU)</displayName>
  3510. <displayName count="many">europskih monetarnih jedinica (ECU)</displayName>
  3511. <displayName count="one">europska monetarna jedinica (ECU)</displayName>
  3512. <displayName count="other">europskih monetarnih jedinica (ECU)</displayName>
  3513. </currency>
  3514. <currency type="XFO">
  3515. <displayName>francuski zlatni franak</displayName>
  3516. <displayName count="few">francuska zlatna franka</displayName>
  3517. <displayName count="many">francuskih zlatnih franaka</displayName>
  3518. <displayName count="one">francuski zlatni franak</displayName>
  3519. <displayName count="other">francuskih zlatnih franaka</displayName>
  3520. </currency>
  3521. <currency type="XFU">
  3522. <displayName>francuski UIC-franak</displayName>
  3523. <displayName count="few">francuska UIC-franka</displayName>
  3524. <displayName count="many">francuskih UIC-franaka</displayName>
  3525. <displayName count="one">francuski UIC-franak</displayName>
  3526. <displayName count="other">francuskih UIC-franaka</displayName>
  3527. </currency>
  3528. <currency type="XOF">
  3529. <displayName>CFA franak BCEAO</displayName>
  3530. <displayName count="few">CFA franka BCEAO</displayName>
  3531. <displayName count="many">CFA franaka BCEAO</displayName>
  3532. <displayName count="one">CFA franak BCEAO</displayName>
  3533. <displayName count="other">CFA franaka BCEAO</displayName>
  3534. </currency>
  3535. <currency type="XPD">
  3536. <displayName>paladij</displayName>
  3537. <displayName count="few">paladija</displayName>
  3538. <displayName count="many">paladija</displayName>
  3539. <displayName count="one">paladij</displayName>
  3540. <displayName count="other">paladija</displayName>
  3541. </currency>
  3542. <currency type="XPF">
  3543. <displayName>CFP franak</displayName>
  3544. <displayName count="many">CFP franaka</displayName>
  3545. <displayName count="other">CFP franaka</displayName>
  3546. </currency>
  3547. <currency type="XPT">
  3548. <displayName>platina</displayName>
  3549. <displayName count="few">platine</displayName>
  3550. <displayName count="many">platina</displayName>
  3551. <displayName count="one">platina</displayName>
  3552. <displayName count="other">platina</displayName>
  3553. </currency>
  3554. <currency type="XRE">
  3555. <displayName>RINET fondovi</displayName>
  3556. <displayName count="few">RINET fonda</displayName>
  3557. <displayName count="many">RINET fondova</displayName>
  3558. <displayName count="one">RINET fond</displayName>
  3559. <displayName count="other">RINET fondova</displayName>
  3560. </currency>
  3561. <currency type="XTS">
  3562. <displayName>ispitni kod valute</displayName>
  3563. <displayName count="few">ispitna koda valute</displayName>
  3564. <displayName count="many">ispitnih kodova valute</displayName>
  3565. <displayName count="one">ispitni kod vlaute</displayName>
  3566. <displayName count="other">ispitnih kodova valute</displayName>
  3567. </currency>
  3568. <currency type="XXX">
  3569. <displayName>nepoznata ili nevažeća valuta</displayName>
  3570. <displayName count="few">nepoznate ili nevažeće valute</displayName>
  3571. <displayName count="many">nepoznatih ili nevažećih valuta</displayName>
  3572. <displayName count="one">nepoznata ili nevažeća valuta</displayName>
  3573. <displayName count="other">nevažećih ili nepoznatih valuta</displayName>
  3574. </currency>
  3575. <currency type="YDD">
  3576. <displayName>jemenski dinar</displayName>
  3577. <displayName count="few">jemenska dinara</displayName>
  3578. <displayName count="many">jemenskih dinara</displayName>
  3579. <displayName count="one">jemenski dinar</displayName>
  3580. <displayName count="other">jemenskih dinara</displayName>
  3581. </currency>
  3582. <currency type="YER">
  3583. <displayName>jemenski rial</displayName>
  3584. <displayName count="few">jemenska rijala</displayName>
  3585. <displayName count="many">jemenskih rijala</displayName>
  3586. <displayName count="one">jemenski rijal</displayName>
  3587. <displayName count="other">jemenskih rijala</displayName>
  3588. </currency>
  3589. <currency type="YUD">
  3590. <displayName>jugoslavenski čvrsti dinar</displayName>
  3591. <displayName count="few">jugoslavenska čvrsta dinara</displayName>
  3592. <displayName count="many">jugoslavenskih čvstih dinara</displayName>
  3593. <displayName count="one">jugoslavenski čvrsti dinar</displayName>
  3594. <displayName count="other">jugoslavenskih čvrstih dinara</displayName>
  3595. </currency>
  3596. <currency type="YUM">
  3597. <displayName>jugoslavenski novi dinar</displayName>
  3598. <displayName count="few">jugoslavenska nova dinara</displayName>
  3599. <displayName count="many">jugoslavenskih novih dinara</displayName>
  3600. <displayName count="one">jugoslavenski novi dinar</displayName>
  3601. <displayName count="other">jugoslavenskih novih dinara</displayName>
  3602. </currency>
  3603. <currency type="YUN">
  3604. <displayName>jugoslavenski konvertibilni dinar</displayName>
  3605. <displayName count="few">jugoslavenska konvertibilna dinara</displayName>
  3606. <displayName count="many">jugoslavenskih konvertibilnih dinara</displayName>
  3607. <displayName count="one">jugoslavenski konvertibilni dinar</displayName>
  3608. <displayName count="other">jugoslavenskih konvertibilnih dinara</displayName>
  3609. </currency>
  3610. <currency type="ZAL">
  3611. <displayName>južnoafrički rand (financijski)</displayName>
  3612. <displayName count="few">južnoafrička randa (financijska)</displayName>
  3613. <displayName count="many">južnoafičkih randa (financijskih)</displayName>
  3614. <displayName count="one">južnoafrički rand (financijski)</displayName>
  3615. <displayName count="other">južnoafričkih randa (financijskih)</displayName>
  3616. </currency>
  3617. <currency type="ZAR">
  3618. <displayName>južnoafrički rand</displayName>
  3619. <displayName count="few">južnoafrička randa</displayName>
  3620. <displayName count="many">južnoafričkih randa</displayName>
  3621. <displayName count="one">južnoafrički rand</displayName>
  3622. <displayName count="other">južnoafričkih randa</displayName>
  3623. </currency>
  3624. <currency type="ZMK">
  3625. <displayName>zambijska kvača</displayName>
  3626. <displayName count="few">zambijske kvače</displayName>
  3627. <displayName count="many">zambijskih kvača</displayName>
  3628. <displayName count="one">zambijska kvača</displayName>
  3629. <displayName count="other">zambijskih kvača</displayName>
  3630. </currency>
  3631. <currency type="ZRN">
  3632. <displayName>zairski novi zair</displayName>
  3633. <displayName count="few">zairska nova zaira</displayName>
  3634. <displayName count="many">zairskih novih zaira</displayName>
  3635. <displayName count="one">zairski novi zair</displayName>
  3636. <displayName count="other">zairskih novih zaira</displayName>
  3637. </currency>
  3638. <currency type="ZRZ">
  3639. <displayName>zairski zair</displayName>
  3640. <displayName count="few">zairska zaira</displayName>
  3641. <displayName count="many">zairskih zaira</displayName>
  3642. <displayName count="one">zairski zair</displayName>
  3643. <displayName count="other">zairskih zaira</displayName>
  3644. </currency>
  3645. <currency type="ZWD">
  3646. <displayName>zimbabveanski dolar</displayName>
  3647. <displayName count="few">zimbabveanska dolara</displayName>
  3648. <displayName count="many">zimbabveanskih dolara</displayName>
  3649. <displayName count="one">zimbabveanski dolar</displayName>
  3650. <displayName count="other">zimbabveanskih dolara</displayName>
  3651. </currency>
  3652. </currencies>
  3653. </numbers>
  3654. <units>
  3655. <unit type="day">
  3656. <unitPattern count="few">{0} dana</unitPattern>
  3657. <unitPattern count="many">{0} dana</unitPattern>
  3658. <unitPattern count="one">{0} dan</unitPattern>
  3659. <unitPattern count="other">{0} dan</unitPattern>
  3660. </unit>
  3661. <unit type="hour">
  3662. <unitPattern count="few">{0} sata</unitPattern>
  3663. <unitPattern count="many">{0} sati</unitPattern>
  3664. <unitPattern count="one">{0} sat</unitPattern>
  3665. <unitPattern count="other">{0} sat</unitPattern>
  3666. </unit>
  3667. <unit type="minute">
  3668. <unitPattern count="few">{0} minute</unitPattern>
  3669. <unitPattern count="many">{0} minuta</unitPattern>
  3670. <unitPattern count="one">{0} minuta</unitPattern>
  3671. <unitPattern count="other">{0} minuta</unitPattern>
  3672. </unit>
  3673. <unit type="month">
  3674. <unitPattern count="few">{0} mjeseca</unitPattern>
  3675. <unitPattern count="many">{0} mjeseci</unitPattern>
  3676. <unitPattern count="one">{0} mjesec</unitPattern>
  3677. <unitPattern count="other">{0} mjesec</unitPattern>
  3678. </unit>
  3679. <unit type="second">
  3680. <unitPattern count="few">{0} sekunde</unitPattern>
  3681. <unitPattern count="many">{0} sekundi</unitPattern>
  3682. <unitPattern count="one">{0} sekunda</unitPattern>
  3683. <unitPattern count="other">{0} sekunda</unitPattern>
  3684. </unit>
  3685. <unit type="week">
  3686. <unitPattern count="few">{0} tjedna</unitPattern>
  3687. <unitPattern count="many">{0} tjedana</unitPattern>
  3688. <unitPattern count="one">{0} tjedan</unitPattern>
  3689. <unitPattern count="other">{0} tjedan</unitPattern>
  3690. </unit>
  3691. <unit type="year">
  3692. <unitPattern count="few">{0} godine</unitPattern>
  3693. <unitPattern count="many">{0} godina</unitPattern>
  3694. <unitPattern count="one">{0} godina</unitPattern>
  3695. <unitPattern count="other">{0} godina</unitPattern>
  3696. </unit>
  3697. </units>
  3698. <posix>
  3699. <messages>
  3700. <yesstr>da:d</yesstr>
  3701. <nostr>ne:n</nostr>
  3702. </messages>
  3703. </posix>
  3704. </ldml>