languages.js 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*!
  2. * numbro.js language configuration
  3. * language : Czech
  4. * locale: Czech Republic
  5. * author : Anatoli Papirovski : https://github.com/apapirovski
  6. */
  7. (function () {
  8. 'use strict';
  9. var language = {
  10. langLocaleCode: 'cs-CZ',
  11. cultureCode: 'cs-CZ',
  12. delimiters: {
  13. thousands: ' ',
  14. decimal: ','
  15. },
  16. abbreviations: {
  17. thousand: 'tis.',
  18. million: 'mil.',
  19. billion: 'b',
  20. trillion: 't'
  21. },
  22. ordinal: function () {
  23. return '.';
  24. },
  25. currency: {
  26. symbol: 'Kč',
  27. position: 'postfix'
  28. },
  29. defaults: {
  30. currencyFormat: ',4 a'
  31. },
  32. formats: {
  33. fourDigits: '4 a',
  34. fullWithTwoDecimals: ',0.00 $',
  35. fullWithTwoDecimalsNoCurrency: ',0.00',
  36. fullWithNoDecimals: ',0 $'
  37. }
  38. };
  39. // CommonJS
  40. if (typeof module !== 'undefined' && module.exports) {
  41. module.exports = language;
  42. }
  43. // Browser
  44. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  45. window.numbro.culture(language.cultureCode, language);
  46. }
  47. }.call(typeof window === 'undefined' ? this : window));
  48. /*!
  49. * numbro.js language configuration
  50. * language : Danish
  51. * locale: Denmark
  52. * author : Michael Storgaard : https://github.com/mstorgaard
  53. */
  54. (function () {
  55. 'use strict';
  56. var language = {
  57. langLocaleCode: 'da-DK',
  58. cultureCode: 'da-DK',
  59. delimiters: {
  60. thousands: '.',
  61. decimal: ','
  62. },
  63. abbreviations: {
  64. thousand: 'k',
  65. million: 'mio',
  66. billion: 'mia',
  67. trillion: 'b'
  68. },
  69. ordinal: function () {
  70. return '.';
  71. },
  72. currency: {
  73. symbol: 'kr',
  74. position: 'postfix'
  75. },
  76. defaults: {
  77. currencyFormat: ',4 a'
  78. },
  79. formats: {
  80. fourDigits: '4 a',
  81. fullWithTwoDecimals: ',0.00 $',
  82. fullWithTwoDecimalsNoCurrency: ',0.00',
  83. fullWithNoDecimals: ',0 $'
  84. }
  85. };
  86. // CommonJS
  87. if (typeof module !== 'undefined' && module.exports) {
  88. module.exports = language;
  89. }
  90. // Browser
  91. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  92. window.numbro.culture(language.cultureCode, language);
  93. }
  94. }.call(typeof window === 'undefined' ? this : window));
  95. /*!
  96. * numbro.js language configuration
  97. * language : German
  98. * locale: Switzerland
  99. * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
  100. */
  101. (function () {
  102. 'use strict';
  103. var language = {
  104. langLocaleCode: 'de-CH',
  105. cultureCode: 'de-CH',
  106. delimiters: {
  107. thousands: ' ',
  108. decimal: ','
  109. },
  110. abbreviations: {
  111. thousand: 'k',
  112. million: 'm',
  113. billion: 'b',
  114. trillion: 't'
  115. },
  116. ordinal: function () {
  117. return '.';
  118. },
  119. currency: {
  120. symbol: 'CHF',
  121. position: 'postfix'
  122. },
  123. defaults: {
  124. currencyFormat: ',4 a'
  125. },
  126. formats: {
  127. fourDigits: '4 a',
  128. fullWithTwoDecimals: ',0.00 $',
  129. fullWithTwoDecimalsNoCurrency: ',0.00',
  130. fullWithNoDecimals: ',0 $'
  131. }
  132. };
  133. // CommonJS
  134. if (typeof module !== 'undefined' && module.exports) {
  135. module.exports = language;
  136. }
  137. // Browser
  138. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  139. window.numbro.culture(language.cultureCode, language);
  140. }
  141. }.call(typeof window === 'undefined' ? this : window));
  142. /*!
  143. * numbro.js language configuration
  144. * language : German
  145. * locale: Germany
  146. * author : Marco Krage : https://github.com/sinky
  147. *
  148. * Generally useful in Germany, Austria, Luxembourg, Belgium
  149. */
  150. (function () {
  151. 'use strict';
  152. var language = {
  153. langLocaleCode: 'de-DE',
  154. cultureCode: 'de-DE',
  155. delimiters: {
  156. thousands: '.',
  157. decimal: ','
  158. },
  159. abbreviations: {
  160. thousand: 'k',
  161. million: 'm',
  162. billion: 'b',
  163. trillion: 't'
  164. },
  165. ordinal: function () {
  166. return '.';
  167. },
  168. currency: {
  169. symbol: '€',
  170. position: 'postfix'
  171. },
  172. defaults: {
  173. currencyFormat: ',4 a'
  174. },
  175. formats: {
  176. fourDigits: '4 a',
  177. fullWithTwoDecimals: ',0.00 $',
  178. fullWithTwoDecimalsNoCurrency: ',0.00',
  179. fullWithNoDecimals: ',0 $'
  180. }
  181. };
  182. // CommonJS
  183. if (typeof module !== 'undefined' && module.exports) {
  184. module.exports = language;
  185. }
  186. // Browser
  187. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  188. window.numbro.culture(language.cultureCode, language);
  189. }
  190. }.call(typeof window === 'undefined' ? this : window));
  191. /*!
  192. * numbro.js language configuration
  193. * language : English
  194. * locale: United Kingdom of Great Britain and Northern Ireland
  195. * author : Dan Ristic : https://github.com/dristic
  196. */
  197. (function () {
  198. 'use strict';
  199. var language = {
  200. langLocaleCode: 'en-GB',
  201. cultureCode: 'en-GB',
  202. delimiters: {
  203. thousands: ',',
  204. decimal: '.'
  205. },
  206. abbreviations: {
  207. thousand: 'k',
  208. million: 'm',
  209. billion: 'b',
  210. trillion: 't'
  211. },
  212. ordinal: function (number) {
  213. var b = number % 10;
  214. return (~~ (number % 100 / 10) === 1) ? 'th' :
  215. (b === 1) ? 'st' :
  216. (b === 2) ? 'nd' :
  217. (b === 3) ? 'rd' : 'th';
  218. },
  219. currency: {
  220. symbol: '£',
  221. position: 'prefix'
  222. },
  223. defaults: {
  224. currencyFormat: ',4 a'
  225. },
  226. formats: {
  227. fourDigits: '4 a',
  228. fullWithTwoDecimals: '$ ,0.00',
  229. fullWithTwoDecimalsNoCurrency: ',0.00',
  230. fullWithNoDecimals: '$ ,0'
  231. }
  232. };
  233. // CommonJS
  234. if (typeof module !== 'undefined' && module.exports) {
  235. module.exports = language;
  236. }
  237. // Browser
  238. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  239. window.numbro.culture(language.cultureCode, language);
  240. }
  241. }.call(typeof window === 'undefined' ? this : window));
  242. /*!
  243. * numbro.js language configuration
  244. * language : English
  245. * locale: South Africa
  246. * author : Stewart Scott https://github.com/stewart42
  247. */
  248. (function () {
  249. 'use strict';
  250. var language = {
  251. langLocaleCode: 'en-ZA',
  252. cultureCode: 'en-ZA',
  253. delimiters: {
  254. thousands: ',',
  255. decimal: '.'
  256. },
  257. abbreviations: {
  258. thousand: 'k',
  259. million: 'm',
  260. billion: 'b',
  261. trillion: 't'
  262. },
  263. ordinal: function (number) {
  264. var b = number % 10;
  265. return (~~ (number % 100 / 10) === 1) ? 'th' :
  266. (b === 1) ? 'st' :
  267. (b === 2) ? 'nd' :
  268. (b === 3) ? 'rd' : 'th';
  269. },
  270. currency: {
  271. symbol: 'R',
  272. position: 'prefix'
  273. },
  274. defaults: {
  275. currencyFormat: ',4 a'
  276. },
  277. formats: {
  278. fourDigits: '4 a',
  279. fullWithTwoDecimals: '$ ,0.00',
  280. fullWithTwoDecimalsNoCurrency: ',0.00',
  281. fullWithNoDecimals: '$ ,0'
  282. }
  283. };
  284. // CommonJS
  285. if (typeof module !== 'undefined' && module.exports) {
  286. module.exports = language;
  287. }
  288. // Browser
  289. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  290. window.numbro.culture(language.cultureCode, language);
  291. }
  292. }.call(typeof window === 'undefined' ? this : window));
  293. /*!
  294. * numbro.js language configuration
  295. * language : Spanish
  296. * locale: Argentina
  297. * author : Hernan Garcia : https://github.com/hgarcia
  298. */
  299. (function () {
  300. 'use strict';
  301. var language = {
  302. langLocaleCode: 'es-AR',
  303. cultureCode: 'es-AR',
  304. delimiters: {
  305. thousands: '.',
  306. decimal: ','
  307. },
  308. abbreviations: {
  309. thousand: 'k',
  310. million: 'mm',
  311. billion: 'b',
  312. trillion: 't'
  313. },
  314. ordinal: function (number) {
  315. var b = number % 10;
  316. return (b === 1 || b === 3) ? 'er' :
  317. (b === 2) ? 'do' :
  318. (b === 7 || b === 0) ? 'mo' :
  319. (b === 8) ? 'vo' :
  320. (b === 9) ? 'no' : 'to';
  321. },
  322. currency: {
  323. symbol: '$',
  324. position: 'postfix'
  325. },
  326. defaults: {
  327. currencyFormat: ',4 a'
  328. },
  329. formats: {
  330. fourDigits: '4 a',
  331. fullWithTwoDecimals: ',0.00 $',
  332. fullWithTwoDecimalsNoCurrency: ',0.00',
  333. fullWithNoDecimals: ',0 $'
  334. }
  335. };
  336. // CommonJS
  337. if (typeof module !== 'undefined' && module.exports) {
  338. module.exports = language;
  339. }
  340. // Browser
  341. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  342. window.numbro.culture(language.cultureCode, language);
  343. }
  344. }.call(typeof window === 'undefined' ? this : window));
  345. /*!
  346. * numbro.js language configuration
  347. * language : Spanish
  348. * locale: Spain
  349. * author : Hernan Garcia : https://github.com/hgarcia
  350. */
  351. (function () {
  352. 'use strict';
  353. var language = {
  354. langLocaleCode: 'es-ES',
  355. cultureCode: 'es-ES',
  356. delimiters: {
  357. thousands: '.',
  358. decimal: ','
  359. },
  360. abbreviations: {
  361. thousand: 'k',
  362. million: 'mm',
  363. billion: 'b',
  364. trillion: 't'
  365. },
  366. ordinal: function (number) {
  367. var b = number % 10;
  368. return (b === 1 || b === 3) ? 'er' :
  369. (b === 2) ? 'do' :
  370. (b === 7 || b === 0) ? 'mo' :
  371. (b === 8) ? 'vo' :
  372. (b === 9) ? 'no' : 'to';
  373. },
  374. currency: {
  375. symbol: '€',
  376. position: 'postfix'
  377. },
  378. defaults: {
  379. currencyFormat: ',4 a'
  380. },
  381. formats: {
  382. fourDigits: '4 a',
  383. fullWithTwoDecimals: ',0.00 $',
  384. fullWithTwoDecimalsNoCurrency: ',0.00',
  385. fullWithNoDecimals: ',0 $'
  386. }
  387. };
  388. // CommonJS
  389. if (typeof module !== 'undefined' && module.exports) {
  390. module.exports = language;
  391. }
  392. // Browser
  393. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  394. window.numbro.culture(language.cultureCode, language);
  395. }
  396. }.call(typeof window === 'undefined' ? this : window));
  397. /*!
  398. * numbro.js language configuration
  399. * language : Estonian
  400. * locale: Estonia
  401. * author : Illimar Tambek : https://github.com/ragulka
  402. *
  403. * Note: in Estonian, abbreviations are always separated
  404. * from numbers with a space
  405. */
  406. (function () {
  407. 'use strict';
  408. var language = {
  409. langLocaleCode: 'et-EE',
  410. cultureCode: 'et-EE',
  411. delimiters: {
  412. thousands: ' ',
  413. decimal: ','
  414. },
  415. abbreviations: {
  416. thousand: ' tuh',
  417. million: ' mln',
  418. billion: ' mld',
  419. trillion: ' trl'
  420. },
  421. ordinal: function () {
  422. return '.';
  423. },
  424. currency: {
  425. symbol: '€',
  426. position: 'postfix'
  427. },
  428. defaults: {
  429. currencyFormat: ',4 a'
  430. },
  431. formats: {
  432. fourDigits: '4 a',
  433. fullWithTwoDecimals: ',0.00 $',
  434. fullWithTwoDecimalsNoCurrency: ',0.00',
  435. fullWithNoDecimals: ',0 $'
  436. }
  437. };
  438. // CommonJS
  439. if (typeof module !== 'undefined' && module.exports) {
  440. module.exports = language;
  441. }
  442. // Browser
  443. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  444. window.numbro.culture(language.cultureCode, language);
  445. }
  446. }.call(typeof window === 'undefined' ? this : window));
  447. /*!
  448. * numbro.js language configuration
  449. * language : Farsi
  450. * locale: Iran
  451. * author : neo13 : https://github.com/neo13
  452. */
  453. (function () {
  454. 'use strict';
  455. var language = {
  456. langLocaleCode: 'fa-IR',
  457. cultureCode: 'fa-IR',
  458. delimiters: {
  459. thousands: '،',
  460. decimal: '.'
  461. },
  462. abbreviations: {
  463. thousand: 'هزار',
  464. million: 'میلیون',
  465. billion: 'میلیارد',
  466. trillion: 'تریلیون'
  467. },
  468. ordinal: function () {
  469. return 'ام';
  470. },
  471. currency: {
  472. symbol: '﷼'
  473. }
  474. };
  475. // CommonJS
  476. if (typeof module !== 'undefined' && module.exports) {
  477. module.exports = language;
  478. }
  479. // Browser
  480. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  481. window.numbro.culture(language.cultureCode, language);
  482. }
  483. }.call(typeof window === 'undefined' ? this : window));
  484. /*!
  485. * numbro.js language configuration
  486. * language : Finnish
  487. * locale: Finland
  488. * author : Sami Saada : https://github.com/samitheberber
  489. */
  490. (function () {
  491. 'use strict';
  492. var language = {
  493. langLocaleCode: 'fi-FI',
  494. cultureCode: 'fi-FI',
  495. delimiters: {
  496. thousands: ' ',
  497. decimal: ','
  498. },
  499. abbreviations: {
  500. thousand: 'k',
  501. million: 'M',
  502. billion: 'G',
  503. trillion: 'T'
  504. },
  505. ordinal: function () {
  506. return '.';
  507. },
  508. currency: {
  509. symbol: '€',
  510. position: 'postfix'
  511. },
  512. defaults: {
  513. currencyFormat: ',4 a'
  514. },
  515. formats: {
  516. fourDigits: '4 a',
  517. fullWithTwoDecimals: ',0.00 $',
  518. fullWithTwoDecimalsNoCurrency: ',0.00',
  519. fullWithNoDecimals: ',0 $'
  520. }
  521. };
  522. // CommonJS
  523. if (typeof module !== 'undefined' && module.exports) {
  524. module.exports = language;
  525. }
  526. // Browser
  527. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  528. window.numbro.culture(language.cultureCode, language);
  529. }
  530. }.call(typeof window === 'undefined' ? this : window));
  531. /*!
  532. * numbro.js language configuration
  533. * language : Filipino (Pilipino)
  534. * locale: Philippines
  535. * author : Michael Abadilla : https://github.com/mjmaix
  536. */
  537. (function () {
  538. 'use strict';
  539. var language = {
  540. langLocaleCode: 'fil-PH',
  541. cultureCode: 'fil-PH',
  542. delimiters: {
  543. thousands: ',',
  544. decimal: '.'
  545. },
  546. abbreviations: {
  547. thousand: 'k',
  548. million: 'm',
  549. billion: 'b',
  550. trillion: 't'
  551. },
  552. ordinal: function (number) {
  553. var b = number % 10;
  554. return (~~ (number % 100 / 10) === 1) ? 'th' :
  555. (b === 1) ? 'st' :
  556. (b === 2) ? 'nd' :
  557. (b === 3) ? 'rd' : 'th';
  558. },
  559. currency: {
  560. symbol: '₱'
  561. }
  562. };
  563. // CommonJS
  564. if (typeof module !== 'undefined' && module.exports) {
  565. module.exports = language;
  566. }
  567. // Browser
  568. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  569. window.numbro.culture(language.cultureCode, language);
  570. }
  571. }.call(typeof window === 'undefined' ? this : window));
  572. /*!
  573. * numbro.js language configuration
  574. * language : French
  575. * locale: Canada
  576. * author : Léo Renaud-Allaire : https://github.com/renaudleo
  577. */
  578. (function () {
  579. 'use strict';
  580. var language = {
  581. langLocaleCode: 'fr-CA',
  582. cultureCode: 'fr-CA',
  583. delimiters: {
  584. thousands: ' ',
  585. decimal: ','
  586. },
  587. abbreviations: {
  588. thousand: 'k',
  589. million: 'M',
  590. billion: 'G',
  591. trillion: 'T'
  592. },
  593. ordinal : function (number) {
  594. return number === 1 ? 'er' : 'ème';
  595. },
  596. currency: {
  597. symbol: '$',
  598. position: 'postfix',
  599. spaceSeparated : true
  600. },
  601. defaults: {
  602. currencyFormat: ',4 a'
  603. },
  604. formats: {
  605. fourDigits: '4 a',
  606. fullWithTwoDecimals: '$ ,0.00',
  607. fullWithTwoDecimalsNoCurrency: ',0.00',
  608. fullWithNoDecimals: '$ ,0'
  609. }
  610. };
  611. // CommonJS
  612. if (typeof module !== 'undefined' && module.exports) {
  613. module.exports = language;
  614. }
  615. // Browser
  616. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  617. window.numbro.culture(language.cultureCode, language);
  618. }
  619. }.call(typeof window === 'undefined' ? this : window));
  620. /*!
  621. * numbro.js language configuration
  622. * language : French
  623. * locale: Switzerland
  624. * author : Adam Draper : https://github.com/adamwdraper
  625. */
  626. (function () {
  627. 'use strict';
  628. var language = {
  629. langLocaleCode: 'fr-CH',
  630. cultureCode: 'fr-CH',
  631. delimiters: {
  632. thousands: '\'',
  633. decimal: '.'
  634. },
  635. abbreviations: {
  636. thousand: 'k',
  637. million: 'm',
  638. billion: 'b',
  639. trillion: 't'
  640. },
  641. ordinal : function (number) {
  642. return number === 1 ? 'er' : 'ème';
  643. },
  644. currency: {
  645. symbol: 'CHF',
  646. position: 'postfix'
  647. },
  648. defaults: {
  649. currencyFormat: ',4 a'
  650. },
  651. formats: {
  652. fourDigits: '4 a',
  653. fullWithTwoDecimals: ',0.00 $',
  654. fullWithTwoDecimalsNoCurrency: ',0.00',
  655. fullWithNoDecimals: ',0 $'
  656. }
  657. };
  658. // CommonJS
  659. if (typeof module !== 'undefined' && module.exports) {
  660. module.exports = language;
  661. }
  662. // Browser
  663. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  664. window.numbro.culture(language.cultureCode, language);
  665. }
  666. }.call(typeof window === 'undefined' ? this : window));
  667. /*!
  668. * numbro.js language configuration
  669. * language : French
  670. * locale: France
  671. * author : Adam Draper : https://github.com/adamwdraper
  672. */
  673. (function () {
  674. 'use strict';
  675. var language = {
  676. langLocaleCode: 'fr-FR',
  677. cultureCode: 'fr-FR',
  678. delimiters: {
  679. thousands: ' ',
  680. decimal: ','
  681. },
  682. abbreviations: {
  683. thousand: 'k',
  684. million: 'm',
  685. billion: 'b',
  686. trillion: 't'
  687. },
  688. ordinal : function (number) {
  689. return number === 1 ? 'er' : 'ème';
  690. },
  691. currency: {
  692. symbol: '€',
  693. position: 'postfix'
  694. },
  695. defaults: {
  696. currencyFormat: ',4 a'
  697. },
  698. formats: {
  699. fourDigits: '4 a',
  700. fullWithTwoDecimals: ',0.00 $',
  701. fullWithTwoDecimalsNoCurrency: ',0.00',
  702. fullWithNoDecimals: ',0 $'
  703. }
  704. };
  705. // CommonJS
  706. if (typeof module !== 'undefined' && module.exports) {
  707. module.exports = language;
  708. }
  709. // Browser
  710. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  711. window.numbro.culture(language.cultureCode, language);
  712. }
  713. }.call(typeof window === 'undefined' ? this : window));
  714. /*!
  715. * numbro.js language configuration
  716. * language : Hebrew
  717. * locale : IL
  718. * author : Eli Zehavi : https://github.com/eli-zehavi
  719. */
  720. (function () {
  721. 'use strict';
  722. var language = {
  723. langLocaleCode: 'he-IL',
  724. cultureCode: 'he-IL',
  725. delimiters: {
  726. thousands: ',',
  727. decimal: '.'
  728. },
  729. abbreviations: {
  730. thousand: 'אלף',
  731. million: 'מליון',
  732. billion: 'בליון',
  733. trillion: 'טריליון'
  734. },
  735. currency: {
  736. symbol: '₪',
  737. position: 'prefix'
  738. },
  739. defaults: {
  740. currencyFormat: ',4 a'
  741. },
  742. formats: {
  743. fourDigits: '4 a',
  744. fullWithTwoDecimals: '₪ ,0.00',
  745. fullWithTwoDecimalsNoCurrency: ',0.00',
  746. fullWithNoDecimals: '₪ ,0'
  747. }
  748. };
  749. // CommonJS
  750. if (typeof module !== 'undefined' && module.exports) {
  751. module.exports = language;
  752. }
  753. // Browser
  754. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  755. window.numbro.culture(language.cultureCode, language);
  756. }
  757. }.call(typeof window === 'undefined' ? this : window));
  758. /*!
  759. * numbro.js language configuration
  760. * language : Hungarian
  761. * locale: Hungary
  762. * author : Peter Bakondy : https://github.com/pbakondy
  763. */
  764. (function () {
  765. 'use strict';
  766. var language = {
  767. langLocaleCode: 'hu-HU',
  768. cultureCode: 'hu-HU',
  769. delimiters: {
  770. thousands: ' ',
  771. decimal: ','
  772. },
  773. abbreviations: {
  774. thousand: 'E', // ezer
  775. million: 'M', // millió
  776. billion: 'Mrd', // milliárd
  777. trillion: 'T' // trillió
  778. },
  779. ordinal: function () {
  780. return '.';
  781. },
  782. currency: {
  783. symbol: ' Ft',
  784. position: 'postfix'
  785. },
  786. defaults: {
  787. currencyFormat: ',4 a'
  788. },
  789. formats: {
  790. fourDigits: '4 a',
  791. fullWithTwoDecimals: ',0.00 $',
  792. fullWithTwoDecimalsNoCurrency: ',0.00',
  793. fullWithNoDecimals: ',0 $'
  794. }
  795. };
  796. // CommonJS
  797. if (typeof module !== 'undefined' && module.exports) {
  798. module.exports = language;
  799. }
  800. // Browser
  801. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  802. window.numbro.culture(language.cultureCode, language);
  803. }
  804. }.call(typeof window === 'undefined' ? this : window));
  805. /*!
  806. * numbro.js language configuration
  807. * language : Italian
  808. * locale: Italy
  809. * author : Giacomo Trombi : http://cinquepunti.it
  810. */
  811. (function () {
  812. 'use strict';
  813. var language = {
  814. langLocaleCode: 'it-IT',
  815. cultureCode: 'it-IT',
  816. delimiters: {
  817. thousands: '.',
  818. decimal: ','
  819. },
  820. abbreviations: {
  821. thousand: 'mila',
  822. million: 'mil',
  823. billion: 'b',
  824. trillion: 't'
  825. },
  826. ordinal: function () {
  827. return 'º';
  828. },
  829. currency: {
  830. symbol: '€',
  831. position: 'postfix'
  832. },
  833. defaults: {
  834. currencyFormat: ',4 a'
  835. },
  836. formats: {
  837. fourDigits: '4 a',
  838. fullWithTwoDecimals: ',0.00 $',
  839. fullWithTwoDecimalsNoCurrency: ',0.00',
  840. fullWithNoDecimals: ',0 $'
  841. }
  842. };
  843. // CommonJS
  844. if (typeof module !== 'undefined' && module.exports) {
  845. module.exports = language;
  846. }
  847. // Browser
  848. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  849. window.numbro.culture(language.cultureCode, language);
  850. }
  851. }.call(typeof window === 'undefined' ? this : window));
  852. /*!
  853. * numbro.js language configuration
  854. * language : Japanese
  855. * locale: Japan
  856. * author : teppeis : https://github.com/teppeis
  857. */
  858. (function () {
  859. 'use strict';
  860. var language = {
  861. langLocaleCode: 'ja-JP',
  862. cultureCode: 'ja-JP',
  863. delimiters: {
  864. thousands: ',',
  865. decimal: '.'
  866. },
  867. abbreviations: {
  868. thousand: '千',
  869. million: '百万',
  870. billion: '十億',
  871. trillion: '兆'
  872. },
  873. ordinal: function () {
  874. return '.';
  875. },
  876. currency: {
  877. symbol: '¥',
  878. position: 'prefix'
  879. },
  880. defaults: {
  881. currencyFormat: ',4 a'
  882. },
  883. formats: {
  884. fourDigits: '4 a',
  885. fullWithTwoDecimals: '$ ,0.00',
  886. fullWithTwoDecimalsNoCurrency: ',0.00',
  887. fullWithNoDecimals: '$ ,0'
  888. }
  889. };
  890. // CommonJS
  891. if (typeof module !== 'undefined' && module.exports) {
  892. module.exports = language;
  893. }
  894. // Browser
  895. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  896. window.numbro.culture(language.cultureCode, language);
  897. }
  898. }.call(typeof window === 'undefined' ? this : window));
  899. /*!
  900. * numbro.js language configuration
  901. * language : Korean
  902. * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway
  903. * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git
  904. */
  905. (function () {
  906. 'use strict';
  907. var language = {
  908. langLocaleCode: 'ko-KR',
  909. cultureCode: 'ko-KR',
  910. delimiters: {
  911. thousands: ',',
  912. decimal: '.'
  913. },
  914. abbreviations: {
  915. thousand: '천',
  916. million: '백만',
  917. billion: '십억',
  918. trillion: '일조'
  919. },
  920. ordinal: function () {
  921. return '.';
  922. },
  923. currency: {
  924. symbol: '₩'
  925. }
  926. };
  927. // CommonJS
  928. if (typeof module !== 'undefined' && module.exports) {
  929. module.exports = language;
  930. }
  931. // Browser
  932. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  933. window.numbro.culture(language.cultureCode, language);
  934. }
  935. }.call(typeof window === 'undefined' ? this : window));
  936. /*!
  937. * numbro.js language configuration
  938. * language : Latvian
  939. * locale: Latvia
  940. * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks
  941. */
  942. (function () {
  943. 'use strict';
  944. var language = {
  945. langLocaleCode: 'lv-LV',
  946. cultureCode: 'lv-LV',
  947. delimiters: {
  948. thousands: ' ',
  949. decimal: ','
  950. },
  951. abbreviations: {
  952. thousand: ' tūkst.',
  953. million: ' milj.',
  954. billion: ' mljrd.',
  955. trillion: ' trilj.'
  956. },
  957. ordinal: function () {
  958. return '.';
  959. },
  960. currency: {
  961. symbol: '€',
  962. position: 'postfix'
  963. },
  964. defaults: {
  965. currencyFormat: ',4 a'
  966. },
  967. formats: {
  968. fourDigits: '4 a',
  969. fullWithTwoDecimals: ',0.00 $',
  970. fullWithTwoDecimalsNoCurrency: ',0.00',
  971. fullWithNoDecimals: ',0 $'
  972. }
  973. };
  974. // CommonJS
  975. if (typeof module !== 'undefined' && module.exports) {
  976. module.exports = language;
  977. }
  978. // Browser
  979. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  980. window.numbro.culture(language.cultureCode, language);
  981. }
  982. }.call(typeof window === 'undefined' ? this : window));
  983. /*!
  984. * numbro.js language configuration
  985. * language: Norwegian Bokmål
  986. * locale: Norway
  987. * author : Benjamin Van Ryseghem
  988. */
  989. (function() {
  990. 'use strict';
  991. var language = {
  992. langLocaleCode: 'nb-NO',
  993. cultureCode: 'nb-NO',
  994. delimiters: {
  995. thousands: ' ',
  996. decimal: ','
  997. },
  998. abbreviations: {
  999. thousand: 't',
  1000. million: 'M',
  1001. billion: 'md',
  1002. trillion: 't'
  1003. },
  1004. currency: {
  1005. symbol: 'kr',
  1006. position: 'postfix'
  1007. },
  1008. defaults: {
  1009. currencyFormat: ',4 a'
  1010. },
  1011. formats: {
  1012. fourDigits: '4 a',
  1013. fullWithTwoDecimals: ',0.00 $',
  1014. fullWithTwoDecimalsNoCurrency: ',0.00',
  1015. fullWithNoDecimals: ',0 $'
  1016. }
  1017. };
  1018. // CommonJS
  1019. if (typeof module !== 'undefined' && module.exports) {
  1020. module.exports = language;
  1021. }
  1022. // Browser
  1023. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1024. window.numbro.culture(language.cultureCode, language);
  1025. }
  1026. }.call(typeof window === 'undefined' ? this : window));
  1027. /*!
  1028. * numbro.js language configuration
  1029. * language : Dutch
  1030. * locale: Belgium
  1031. * author : Dieter Luypaert : https://github.com/moeriki
  1032. */
  1033. (function () {
  1034. 'use strict';
  1035. var language = {
  1036. langLocaleCode: 'nl-BE',
  1037. cultureCode: 'nl-BE',
  1038. delimiters: {
  1039. thousands: ' ',
  1040. decimal : ','
  1041. },
  1042. abbreviations: {
  1043. thousand : 'k',
  1044. million : 'mln',
  1045. billion : 'mld',
  1046. trillion : 'bln'
  1047. },
  1048. ordinal : function (number) {
  1049. var remainder = number % 100;
  1050. return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
  1051. },
  1052. currency: {
  1053. symbol: '€',
  1054. position: 'postfix'
  1055. },
  1056. defaults: {
  1057. currencyFormat: ',4 a'
  1058. },
  1059. formats: {
  1060. fourDigits: '4 a',
  1061. fullWithTwoDecimals: ',0.00 $',
  1062. fullWithTwoDecimalsNoCurrency: ',0.00',
  1063. fullWithNoDecimals: ',0 $'
  1064. }
  1065. };
  1066. // CommonJS
  1067. if (typeof module !== 'undefined' && module.exports) {
  1068. module.exports = language;
  1069. }
  1070. // Browser
  1071. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1072. window.numbro.culture(language.cultureCode, language);
  1073. }
  1074. }.call(typeof window === 'undefined' ? this : window));
  1075. /*!
  1076. * numbro.js language configuration
  1077. * language : Dutch
  1078. * locale: Netherlands
  1079. * author : Dave Clayton : https://github.com/davedx
  1080. */
  1081. (function () {
  1082. 'use strict';
  1083. var language = {
  1084. langLocaleCode: 'nl-NL',
  1085. cultureCode: 'nl-NL',
  1086. delimiters: {
  1087. thousands: '.',
  1088. decimal : ','
  1089. },
  1090. abbreviations: {
  1091. thousand : 'k',
  1092. million : 'mln',
  1093. billion : 'mrd',
  1094. trillion : 'bln'
  1095. },
  1096. ordinal : function (number) {
  1097. var remainder = number % 100;
  1098. return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
  1099. },
  1100. currency: {
  1101. symbol: '€',
  1102. position: 'postfix'
  1103. },
  1104. defaults: {
  1105. currencyFormat: ',4 a'
  1106. },
  1107. formats: {
  1108. fourDigits: '4 a',
  1109. fullWithTwoDecimals: ',0.00 $',
  1110. fullWithTwoDecimalsNoCurrency: ',0.00',
  1111. fullWithNoDecimals: ',0 $'
  1112. }
  1113. };
  1114. // CommonJS
  1115. if (typeof module !== 'undefined' && module.exports) {
  1116. module.exports = language;
  1117. }
  1118. // Browser
  1119. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1120. window.numbro.culture(language.cultureCode, language);
  1121. }
  1122. }.call(typeof window === 'undefined' ? this : window));
  1123. /*!
  1124. * numbro.js language configuration
  1125. * language : Polish
  1126. * locale : Poland
  1127. * author : Dominik Bulaj : https://github.com/dominikbulaj
  1128. */
  1129. (function () {
  1130. 'use strict';
  1131. var language = {
  1132. langLocaleCode: 'pl-PL',
  1133. cultureCode: 'pl-PL',
  1134. delimiters: {
  1135. thousands: ' ',
  1136. decimal: ','
  1137. },
  1138. abbreviations: {
  1139. thousand: 'tys.',
  1140. million: 'mln',
  1141. billion: 'mld',
  1142. trillion: 'bln'
  1143. },
  1144. ordinal: function () {
  1145. return '.';
  1146. },
  1147. currency: {
  1148. symbol: ' zł',
  1149. position: 'postfix'
  1150. },
  1151. defaults: {
  1152. currencyFormat: ',4 a'
  1153. },
  1154. formats: {
  1155. fourDigits: '4 a',
  1156. fullWithTwoDecimals: ',0.00 $',
  1157. fullWithTwoDecimalsNoCurrency: ',0.00',
  1158. fullWithNoDecimals: ',0 $'
  1159. }
  1160. };
  1161. // CommonJS
  1162. if (typeof module !== 'undefined' && module.exports) {
  1163. module.exports = language;
  1164. }
  1165. // Browser
  1166. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1167. window.numbro.culture(language.cultureCode, language);
  1168. }
  1169. }.call(typeof window === 'undefined' ? this : window));
  1170. /*!
  1171. * numbro.js language configuration
  1172. * language : Portuguese
  1173. * locale : Brazil
  1174. * author : Ramiro Varandas Jr : https://github.com/ramirovjr
  1175. */
  1176. (function () {
  1177. 'use strict';
  1178. var language = {
  1179. langLocaleCode: 'pt-BR',
  1180. cultureCode: 'pt-BR',
  1181. delimiters: {
  1182. thousands: '.',
  1183. decimal: ','
  1184. },
  1185. abbreviations: {
  1186. thousand: 'mil',
  1187. million: 'milhões',
  1188. billion: 'b',
  1189. trillion: 't'
  1190. },
  1191. ordinal: function () {
  1192. return 'º';
  1193. },
  1194. currency: {
  1195. symbol: 'R$',
  1196. position: 'prefix'
  1197. },
  1198. defaults: {
  1199. currencyFormat: ',4 a'
  1200. },
  1201. formats: {
  1202. fourDigits: '4 a',
  1203. fullWithTwoDecimals: ',0.00 $',
  1204. fullWithTwoDecimalsNoCurrency: ',0.00',
  1205. fullWithNoDecimals: ',0 $'
  1206. }
  1207. };
  1208. // CommonJS
  1209. if (typeof module !== 'undefined' && module.exports) {
  1210. module.exports = language;
  1211. }
  1212. // Browser
  1213. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1214. window.numbro.culture(language.cultureCode, language);
  1215. }
  1216. }.call(typeof window === 'undefined' ? this : window));
  1217. /*!
  1218. * numbro.js language configuration
  1219. * language : Portuguese
  1220. * locale : Portugal
  1221. * author : Diogo Resende : https://github.com/dresende
  1222. */
  1223. (function () {
  1224. 'use strict';
  1225. var language = {
  1226. langLocaleCode: 'pt-PT',
  1227. cultureCode: 'pt-PT',
  1228. delimiters: {
  1229. thousands: ' ',
  1230. decimal: ','
  1231. },
  1232. abbreviations: {
  1233. thousand: 'k',
  1234. million: 'm',
  1235. billion: 'b',
  1236. trillion: 't'
  1237. },
  1238. ordinal : function () {
  1239. return 'º';
  1240. },
  1241. currency: {
  1242. symbol: '€',
  1243. position: 'postfix'
  1244. },
  1245. defaults: {
  1246. currencyFormat: ',4 a'
  1247. },
  1248. formats: {
  1249. fourDigits: '4 a',
  1250. fullWithTwoDecimals: ',0.00 $',
  1251. fullWithTwoDecimalsNoCurrency: ',0.00',
  1252. fullWithNoDecimals: ',0 $'
  1253. }
  1254. };
  1255. // CommonJS
  1256. if (typeof module !== 'undefined' && module.exports) {
  1257. module.exports = language;
  1258. }
  1259. // Browser
  1260. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1261. window.numbro.culture(language.cultureCode, language);
  1262. }
  1263. }.call(typeof window === 'undefined' ? this : window));
  1264. /*!
  1265. * numbro.js language configuration
  1266. * language : Russian
  1267. * locale : Russsia
  1268. * author : Anatoli Papirovski : https://github.com/apapirovski
  1269. */
  1270. (function () {
  1271. 'use strict';
  1272. var language = {
  1273. langLocaleCode: 'ru-RU',
  1274. cultureCode: 'ru-RU',
  1275. delimiters: {
  1276. thousands: ' ',
  1277. decimal: ','
  1278. },
  1279. abbreviations: {
  1280. thousand: 'тыс.',
  1281. million: 'млн',
  1282. billion: 'b',
  1283. trillion: 't'
  1284. },
  1285. ordinal: function () {
  1286. // not ideal, but since in Russian it can taken on
  1287. // different forms (masculine, feminine, neuter)
  1288. // this is all we can do
  1289. return '.';
  1290. },
  1291. currency: {
  1292. symbol: 'руб.',
  1293. position: 'postfix'
  1294. },
  1295. defaults: {
  1296. currencyFormat: ',4 a'
  1297. },
  1298. formats: {
  1299. fourDigits: '4 a',
  1300. fullWithTwoDecimals: ',0.00 $',
  1301. fullWithTwoDecimalsNoCurrency: ',0.00',
  1302. fullWithNoDecimals: ',0 $'
  1303. }
  1304. };
  1305. // CommonJS
  1306. if (typeof module !== 'undefined' && module.exports) {
  1307. module.exports = language;
  1308. }
  1309. // Browser
  1310. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1311. window.numbro.culture(language.cultureCode, language);
  1312. }
  1313. }.call(typeof window === 'undefined' ? this : window));
  1314. /*!
  1315. * numbro.js language configuration
  1316. * language : Russian
  1317. * locale : Ukraine
  1318. * author : Anatoli Papirovski : https://github.com/apapirovski
  1319. */
  1320. (function () {
  1321. 'use strict';
  1322. var language = {
  1323. langLocaleCode: 'ru-UA',
  1324. cultureCode: 'ru-UA',
  1325. delimiters: {
  1326. thousands: ' ',
  1327. decimal: ','
  1328. },
  1329. abbreviations: {
  1330. thousand: 'тыс.',
  1331. million: 'млн',
  1332. billion: 'b',
  1333. trillion: 't'
  1334. },
  1335. ordinal: function () {
  1336. // not ideal, but since in Russian it can taken on
  1337. // different forms (masculine, feminine, neuter)
  1338. // this is all we can do
  1339. return '.';
  1340. },
  1341. currency: {
  1342. symbol: '\u20B4',
  1343. position: 'postfix'
  1344. },
  1345. defaults: {
  1346. currencyFormat: ',4 a'
  1347. },
  1348. formats: {
  1349. fourDigits: '4 a',
  1350. fullWithTwoDecimals: ',0.00 $',
  1351. fullWithTwoDecimalsNoCurrency: ',0.00',
  1352. fullWithNoDecimals: ',0 $'
  1353. }
  1354. };
  1355. // CommonJS
  1356. if (typeof module !== 'undefined' && module.exports) {
  1357. module.exports = language;
  1358. }
  1359. // Browser
  1360. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1361. window.numbro.culture(language.cultureCode, language);
  1362. }
  1363. }.call(typeof window === 'undefined' ? this : window));
  1364. /*!
  1365. * numbro.js language configuration
  1366. * language : Slovak
  1367. * locale : Slovakia
  1368. * author : Ahmed Al Hafoudh : http://www.freevision.sk
  1369. */
  1370. (function () {
  1371. 'use strict';
  1372. var language = {
  1373. langLocaleCode: 'sk-SK',
  1374. cultureCode: 'sk-SK',
  1375. delimiters: {
  1376. thousands: ' ',
  1377. decimal: ','
  1378. },
  1379. abbreviations: {
  1380. thousand: 'tis.',
  1381. million: 'mil.',
  1382. billion: 'b',
  1383. trillion: 't'
  1384. },
  1385. ordinal: function () {
  1386. return '.';
  1387. },
  1388. currency: {
  1389. symbol: '€',
  1390. position: 'postfix'
  1391. },
  1392. defaults: {
  1393. currencyFormat: ',4 a'
  1394. },
  1395. formats: {
  1396. fourDigits: '4 a',
  1397. fullWithTwoDecimals: ',0.00 $',
  1398. fullWithTwoDecimalsNoCurrency: ',0.00',
  1399. fullWithNoDecimals: ',0 $'
  1400. }
  1401. };
  1402. // CommonJS
  1403. if (typeof module !== 'undefined' && module.exports) {
  1404. module.exports = language;
  1405. }
  1406. // Browser
  1407. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1408. window.numbro.culture(language.cultureCode, language);
  1409. }
  1410. }.call(typeof window === 'undefined' ? this : window));
  1411. /*!
  1412. * numbro.js language configuration
  1413. * language : Swedish
  1414. * locale : Sweden
  1415. * author : Benjamin Van Ryseghem (benjamin.vanryseghem.com)
  1416. */
  1417. (function() {
  1418. 'use strict';
  1419. var language = {
  1420. langLocaleCode: 'sv-SE',
  1421. cultureCode: 'sv-SE',
  1422. delimiters: {
  1423. thousands: ' ',
  1424. decimal: ','
  1425. },
  1426. abbreviations: {
  1427. thousand: 't',
  1428. million: 'M',
  1429. billion: 'md',
  1430. trillion: 'tmd'
  1431. },
  1432. currency: {
  1433. symbol: 'kr',
  1434. position: 'postfix'
  1435. },
  1436. defaults: {
  1437. currencyFormat: ',4 a'
  1438. },
  1439. formats: {
  1440. fourDigits: '4 a',
  1441. fullWithTwoDecimals: ',0.00 $',
  1442. fullWithTwoDecimalsNoCurrency: ',0.00',
  1443. fullWithNoDecimals: ',0 $'
  1444. }
  1445. };
  1446. // CommonJS
  1447. if (typeof module !== 'undefined' && module.exports) {
  1448. module.exports = language;
  1449. }
  1450. // Browser
  1451. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1452. window.numbro.culture(language.cultureCode, language);
  1453. }
  1454. }.call(typeof window === 'undefined' ? this : window));
  1455. /*!
  1456. * numbro.js language configuration
  1457. * language : Thai
  1458. * locale : Thailand
  1459. * author : Sathit Jittanupat : https://github.com/jojosati
  1460. */
  1461. (function () {
  1462. 'use strict';
  1463. var language = {
  1464. langLocaleCode: 'th-TH',
  1465. cultureCode: 'th-TH',
  1466. delimiters: {
  1467. thousands: ',',
  1468. decimal: '.'
  1469. },
  1470. abbreviations: {
  1471. thousand: 'พัน',
  1472. million: 'ล้าน',
  1473. billion: 'พันล้าน',
  1474. trillion: 'ล้านล้าน'
  1475. },
  1476. ordinal: function () {
  1477. return '.';
  1478. },
  1479. currency: {
  1480. symbol: '฿',
  1481. position: 'postfix'
  1482. },
  1483. defaults: {
  1484. currencyFormat: ',4 a'
  1485. },
  1486. formats: {
  1487. fourDigits: '4 a',
  1488. fullWithTwoDecimals: ',0.00 $',
  1489. fullWithTwoDecimalsNoCurrency: ',0.00',
  1490. fullWithNoDecimals: ',0 $'
  1491. }
  1492. };
  1493. // CommonJS
  1494. if (typeof module !== 'undefined' && module.exports) {
  1495. module.exports = language;
  1496. }
  1497. // Browser
  1498. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1499. window.numbro.culture(language.cultureCode, language);
  1500. }
  1501. }.call(typeof window === 'undefined' ? this : window));
  1502. /*!
  1503. * numbro.js language configuration
  1504. * language : Turkish
  1505. * locale : Turkey
  1506. * author : Ecmel Ercan : https://github.com/ecmel,
  1507. * Erhan Gundogan : https://github.com/erhangundogan,
  1508. * Burak Yiğit Kaya: https://github.com/BYK
  1509. */
  1510. (function() {
  1511. 'use strict';
  1512. var suffixes = {
  1513. 1: '\'inci',
  1514. 5: '\'inci',
  1515. 8: '\'inci',
  1516. 70: '\'inci',
  1517. 80: '\'inci',
  1518. 2: '\'nci',
  1519. 7: '\'nci',
  1520. 20: '\'nci',
  1521. 50: '\'nci',
  1522. 3: '\'üncü',
  1523. 4: '\'üncü',
  1524. 100: '\'üncü',
  1525. 6: '\'ncı',
  1526. 9: '\'uncu',
  1527. 10: '\'uncu',
  1528. 30: '\'uncu',
  1529. 60: '\'ıncı',
  1530. 90: '\'ıncı'
  1531. },
  1532. language = {
  1533. langLocaleCode: 'tr-TR',
  1534. cultureCode: 'tr-TR',
  1535. delimiters: {
  1536. thousands: '.',
  1537. decimal: ','
  1538. },
  1539. abbreviations: {
  1540. thousand: 'bin',
  1541. million: 'milyon',
  1542. billion: 'milyar',
  1543. trillion: 'trilyon'
  1544. },
  1545. ordinal: function(number) {
  1546. if (number === 0) { // special case for zero
  1547. return '\'ıncı';
  1548. }
  1549. var a = number % 10,
  1550. b = number % 100 - a,
  1551. c = number >= 100 ? 100 : null;
  1552. return suffixes[a] || suffixes[b] || suffixes[c];
  1553. },
  1554. currency: {
  1555. symbol: '\u20BA',
  1556. position: 'postfix'
  1557. },
  1558. defaults: {
  1559. currencyFormat: ',4 a'
  1560. },
  1561. formats: {
  1562. fourDigits: '4 a',
  1563. fullWithTwoDecimals: ',0.00 $',
  1564. fullWithTwoDecimalsNoCurrency: ',0.00',
  1565. fullWithNoDecimals: ',0 $'
  1566. }
  1567. };
  1568. // CommonJS
  1569. if (typeof module !== 'undefined' && module.exports) {
  1570. module.exports = language;
  1571. }
  1572. // Browser
  1573. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1574. window.numbro.culture(language.cultureCode, language);
  1575. }
  1576. }.call(typeof window === 'undefined' ? this : window));
  1577. /*!
  1578. * numbro.js language configuration
  1579. * language : Ukrainian
  1580. * locale : Ukraine
  1581. * author : Michael Piefel : https://github.com/piefel (with help from Tetyana Kuzmenko)
  1582. */
  1583. (function () {
  1584. 'use strict';
  1585. var language = {
  1586. langLocaleCode: 'uk-UA',
  1587. cultureCode: 'uk-UA',
  1588. delimiters: {
  1589. thousands: ' ',
  1590. decimal: ','
  1591. },
  1592. abbreviations: {
  1593. thousand: 'тис.',
  1594. million: 'млн',
  1595. billion: 'млрд',
  1596. trillion: 'блн'
  1597. },
  1598. ordinal: function () {
  1599. // not ideal, but since in Ukrainian it can taken on
  1600. // different forms (masculine, feminine, neuter)
  1601. // this is all we can do
  1602. return '';
  1603. },
  1604. currency: {
  1605. symbol: '\u20B4',
  1606. position: 'postfix'
  1607. },
  1608. defaults: {
  1609. currencyFormat: ',4 a'
  1610. },
  1611. formats: {
  1612. fourDigits: '4 a',
  1613. fullWithTwoDecimals: ',0.00 $',
  1614. fullWithTwoDecimalsNoCurrency: ',0.00',
  1615. fullWithNoDecimals: ',0 $'
  1616. }
  1617. };
  1618. // CommonJS
  1619. if (typeof module !== 'undefined' && module.exports) {
  1620. module.exports = language;
  1621. }
  1622. // Browser
  1623. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1624. window.numbro.culture(language.cultureCode, language);
  1625. }
  1626. }.call(typeof window === 'undefined' ? this : window));
  1627. /*!
  1628. * numbro.js language configuration
  1629. * language : simplified chinese
  1630. * locale : China
  1631. * author : badplum : https://github.com/badplum
  1632. */
  1633. (function () {
  1634. 'use strict';
  1635. var language = {
  1636. langLocaleCode: 'zh-CN',
  1637. cultureCode: 'zh-CN',
  1638. delimiters: {
  1639. thousands: ',',
  1640. decimal: '.'
  1641. },
  1642. abbreviations: {
  1643. thousand: '千',
  1644. million: '百万',
  1645. billion: '十亿',
  1646. trillion: '兆'
  1647. },
  1648. ordinal: function () {
  1649. return '.';
  1650. },
  1651. currency: {
  1652. symbol: '¥',
  1653. position: 'prefix'
  1654. },
  1655. defaults: {
  1656. currencyFormat: ',4 a'
  1657. },
  1658. formats: {
  1659. fourDigits: '4 a',
  1660. fullWithTwoDecimals: '$ ,0.00',
  1661. fullWithTwoDecimalsNoCurrency: ',0.00',
  1662. fullWithNoDecimals: '$ ,0'
  1663. }
  1664. };
  1665. // CommonJS
  1666. if (typeof module !== 'undefined' && module.exports) {
  1667. module.exports = language;
  1668. }
  1669. // Browser
  1670. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1671. window.numbro.culture(language.cultureCode, language);
  1672. }
  1673. }.call(typeof window === 'undefined' ? this : window));
  1674. /*!
  1675. * numbro.js language configuration
  1676. * language : Chinese (Taiwan)
  1677. * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway
  1678. * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git
  1679. */
  1680. (function () {
  1681. 'use strict';
  1682. var language = {
  1683. langLocaleCode: 'zh-TW',
  1684. cultureCode: 'zh-TW',
  1685. delimiters: {
  1686. thousands: ',',
  1687. decimal: '.'
  1688. },
  1689. abbreviations: {
  1690. thousand: '千',
  1691. million: '百萬',
  1692. billion: '十億',
  1693. trillion: '兆'
  1694. },
  1695. ordinal: function () {
  1696. return '第';
  1697. },
  1698. currency: {
  1699. symbol: 'NT$'
  1700. }
  1701. };
  1702. // CommonJS
  1703. if (typeof module !== 'undefined' && module.exports) {
  1704. module.exports = language;
  1705. }
  1706. // Browser
  1707. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1708. window.numbro.culture(language.cultureCode, language);
  1709. }
  1710. }.call(typeof window === 'undefined' ? this : window));