You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2937 lines
74 KiB

  1. /*!
  2. * numbro.js language configuration
  3. * language : Bulgarian
  4. * author : Tim McIntosh (StayinFront NZ)
  5. */
  6. (function () {
  7. 'use strict';
  8. var language = {
  9. langLocaleCode: 'bg',
  10. cultureCode: 'bg',
  11. delimiters: {
  12. thousands: ' ',
  13. decimal: ','
  14. },
  15. abbreviations: {
  16. thousand: 'И',
  17. million: 'А',
  18. billion: 'M',
  19. trillion: 'T'
  20. },
  21. ordinal: function () {
  22. return '.';
  23. },
  24. currency: {
  25. symbol: 'лв.'
  26. }
  27. };
  28. // Node
  29. if (typeof module !== 'undefined' && module.exports) {
  30. module.exports = language;
  31. }
  32. // Browser
  33. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  34. this.numbro.culture('bg', language);
  35. }
  36. }.call(typeof window === 'undefined' ? this : window));
  37. /*!
  38. * numbro.js language configuration
  39. * language : Czech
  40. * locale: Czech Republic
  41. * author : Jan Pesa : https://github.com/smajl (based on work from Anatoli Papirovski : https://github.com/apapirovski)
  42. */
  43. (function () {
  44. 'use strict';
  45. var language = {
  46. langLocaleCode: 'cs-CZ',
  47. cultureCode: 'cs-CZ',
  48. delimiters: {
  49. thousands: '\u00a0',
  50. decimal: ','
  51. },
  52. abbreviations: {
  53. thousand: 'tis.',
  54. million: 'mil.',
  55. billion: 'mld.',
  56. trillion: 'bil.'
  57. },
  58. ordinal: function () {
  59. return '.';
  60. },
  61. currency: {
  62. symbol: 'Kč',
  63. position: 'postfix',
  64. spaceSeparated: true
  65. },
  66. defaults: {
  67. currencyFormat: ',4 a'
  68. },
  69. formats: {
  70. fourDigits: '4 a',
  71. fullWithTwoDecimals: ',0.00 $',
  72. fullWithTwoDecimalsNoCurrency: ',0.00',
  73. fullWithNoDecimals: ',0 $'
  74. }
  75. };
  76. // CommonJS
  77. if (typeof module !== 'undefined' && module.exports) {
  78. module.exports = language;
  79. }
  80. // Browser
  81. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  82. window.numbro.culture(language.cultureCode, language);
  83. }
  84. }.call(typeof window === 'undefined' ? this : window));
  85. /*!
  86. * numbro.js language configuration
  87. * language : Danish
  88. * locale: Denmark
  89. * author : Michael Storgaard : https://github.com/mstorgaard
  90. */
  91. (function () {
  92. 'use strict';
  93. var language = {
  94. langLocaleCode: 'da-DK',
  95. cultureCode: 'da-DK',
  96. delimiters: {
  97. thousands: '.',
  98. decimal: ','
  99. },
  100. abbreviations: {
  101. thousand: 'k',
  102. million: 'mio',
  103. billion: 'mia',
  104. trillion: 'b'
  105. },
  106. ordinal: function () {
  107. return '.';
  108. },
  109. currency: {
  110. symbol: 'kr',
  111. position: 'postfix'
  112. },
  113. defaults: {
  114. currencyFormat: ',4 a'
  115. },
  116. formats: {
  117. fourDigits: '4 a',
  118. fullWithTwoDecimals: ',0.00 $',
  119. fullWithTwoDecimalsNoCurrency: ',0.00',
  120. fullWithNoDecimals: ',0 $'
  121. }
  122. };
  123. // CommonJS
  124. if (typeof module !== 'undefined' && module.exports) {
  125. module.exports = language;
  126. }
  127. // Browser
  128. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  129. window.numbro.culture(language.cultureCode, language);
  130. }
  131. }.call(typeof window === 'undefined' ? this : window));
  132. /*!
  133. * numbro.js language configuration
  134. * language : German
  135. * locale: Austria
  136. * author : Tim McIntosh (StayinFront NZ)
  137. */
  138. (function () {
  139. 'use strict';
  140. var language = {
  141. langLocaleCode: 'de-AT',
  142. cultureCode: 'de-AT',
  143. delimiters: {
  144. thousands: ' ',
  145. decimal: ','
  146. },
  147. abbreviations: {
  148. thousand: 'k',
  149. million: 'm',
  150. billion: 'b',
  151. trillion: 't'
  152. },
  153. ordinal: function () {
  154. return '.';
  155. },
  156. currency: {
  157. symbol: '€'
  158. }
  159. };
  160. // Node
  161. if (typeof module !== 'undefined' && module.exports) {
  162. module.exports = language;
  163. }
  164. // Browser
  165. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  166. window.numbro.culture(language.cultureCode, language);
  167. }
  168. }.call(typeof window === 'undefined' ? this : window));
  169. /*!
  170. * numbro.js language configuration
  171. * language : German
  172. * locale: Switzerland
  173. * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
  174. */
  175. (function () {
  176. 'use strict';
  177. var language = {
  178. langLocaleCode: 'de-CH',
  179. cultureCode: 'de-CH',
  180. delimiters: {
  181. thousands: '\'',
  182. decimal: '.'
  183. },
  184. abbreviations: {
  185. thousand: 'k',
  186. million: 'm',
  187. billion: 'b',
  188. trillion: 't'
  189. },
  190. ordinal: function () {
  191. return '.';
  192. },
  193. currency: {
  194. symbol: 'CHF',
  195. position: 'postfix'
  196. },
  197. defaults: {
  198. currencyFormat: ',4 a'
  199. },
  200. formats: {
  201. fourDigits: '4 a',
  202. fullWithTwoDecimals: ',0.00 $',
  203. fullWithTwoDecimalsNoCurrency: ',0.00',
  204. fullWithNoDecimals: ',0 $'
  205. }
  206. };
  207. // CommonJS
  208. if (typeof module !== 'undefined' && module.exports) {
  209. module.exports = language;
  210. }
  211. // Browser
  212. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  213. window.numbro.culture(language.cultureCode, language);
  214. }
  215. }.call(typeof window === 'undefined' ? this : window));
  216. /*!
  217. * numbro.js language configuration
  218. * language : German
  219. * locale: Germany
  220. * author : Marco Krage : https://github.com/sinky
  221. *
  222. * Generally useful in Germany, Austria, Luxembourg, Belgium
  223. */
  224. (function () {
  225. 'use strict';
  226. var language = {
  227. langLocaleCode: 'de-DE',
  228. cultureCode: 'de-DE',
  229. delimiters: {
  230. thousands: '.',
  231. decimal: ','
  232. },
  233. abbreviations: {
  234. thousand: 'k',
  235. million: 'm',
  236. billion: 'b',
  237. trillion: 't'
  238. },
  239. ordinal: function () {
  240. return '.';
  241. },
  242. currency: {
  243. symbol: '€',
  244. position: 'postfix',
  245. spaceSeparated: true
  246. },
  247. defaults: {
  248. currencyFormat: ',4'
  249. },
  250. formats: {
  251. fourDigits: '4 a',
  252. fullWithTwoDecimals: ',0.00 $',
  253. fullWithTwoDecimalsNoCurrency: ',0.00',
  254. fullWithNoDecimals: ',0 $'
  255. }
  256. };
  257. // CommonJS
  258. if (typeof module !== 'undefined' && module.exports) {
  259. module.exports = language;
  260. }
  261. // Browser
  262. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  263. window.numbro.culture(language.cultureCode, language);
  264. }
  265. }.call(typeof window === 'undefined' ? this : window));
  266. /*!
  267. * numbro.js language configuration
  268. * language : German
  269. * locale: Liechtenstein
  270. * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
  271. */
  272. (function () {
  273. 'use strict';
  274. var language = {
  275. langLocaleCode: 'de-LI',
  276. cultureCode: 'de-LI',
  277. delimiters: {
  278. thousands: '\'',
  279. decimal: '.'
  280. },
  281. abbreviations: {
  282. thousand: 'k',
  283. million: 'm',
  284. billion: 'b',
  285. trillion: 't'
  286. },
  287. ordinal: function () {
  288. return '.';
  289. },
  290. currency: {
  291. symbol: 'CHF',
  292. position: 'postfix'
  293. },
  294. defaults: {
  295. currencyFormat: ',4 a'
  296. },
  297. formats: {
  298. fourDigits: '4 a',
  299. fullWithTwoDecimals: ',0.00 $',
  300. fullWithTwoDecimalsNoCurrency: ',0.00',
  301. fullWithNoDecimals: ',0 $'
  302. }
  303. };
  304. // CommonJS
  305. if (typeof module !== 'undefined' && module.exports) {
  306. module.exports = language;
  307. }
  308. // Browser
  309. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  310. window.numbro.culture(language.cultureCode, language);
  311. }
  312. }.call(typeof window === 'undefined' ? this : window));
  313. /*!
  314. * numbro.js language configuration
  315. * language : Greek (el)
  316. * author : Tim McIntosh (StayinFront NZ)
  317. */
  318. (function () {
  319. 'use strict';
  320. var language = {
  321. langLocaleCode: 'el',
  322. cultureCode: 'el',
  323. delimiters: {
  324. thousands: '.',
  325. decimal: ','
  326. },
  327. abbreviations: {
  328. thousand: 'χ',
  329. million: 'ε',
  330. billion: 'δ',
  331. trillion: 'τ'
  332. },
  333. ordinal: function () {
  334. return '.';
  335. },
  336. currency: {
  337. symbol: '€'
  338. }
  339. };
  340. // Node
  341. if (typeof module !== 'undefined' && module.exports) {
  342. module.exports = language;
  343. }
  344. // Browser
  345. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  346. window.numbro.culture('el', language);
  347. }
  348. }.call(typeof window === 'undefined' ? this : window));
  349. /*!
  350. * numbro.js language configuration
  351. * language : English
  352. * locale: Australia
  353. * author : Benedikt Huss : https://github.com/ben305
  354. */
  355. (function () {
  356. 'use strict';
  357. var language = {
  358. langLocaleCode: 'en-AU',
  359. cultureCode: 'en-AU',
  360. delimiters: {
  361. thousands: ',',
  362. decimal: '.'
  363. },
  364. abbreviations: {
  365. thousand: 'k',
  366. million: 'm',
  367. billion: 'b',
  368. trillion: 't'
  369. },
  370. ordinal: function (number) {
  371. var b = number % 10;
  372. return (~~ (number % 100 / 10) === 1) ? 'th' :
  373. (b === 1) ? 'st' :
  374. (b === 2) ? 'nd' :
  375. (b === 3) ? 'rd' : 'th';
  376. },
  377. currency: {
  378. symbol: '$',
  379. position: 'prefix'
  380. },
  381. defaults: {
  382. currencyFormat: ',4 a'
  383. },
  384. formats: {
  385. fourDigits: '4 a',
  386. fullWithTwoDecimals: '$ ,0.00',
  387. fullWithTwoDecimalsNoCurrency: ',0.00',
  388. fullWithNoDecimals: '$ ,0'
  389. }
  390. };
  391. // CommonJS
  392. if (typeof module !== 'undefined' && module.exports) {
  393. module.exports = language;
  394. }
  395. // Browser
  396. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  397. window.numbro.culture(language.cultureCode, language);
  398. }
  399. }.call(typeof window === 'undefined' ? this : window));
  400. /*!
  401. * numbro.js language configuration
  402. * language : English
  403. * locale: United Kingdom of Great Britain and Northern Ireland
  404. * author : Dan Ristic : https://github.com/dristic
  405. */
  406. (function () {
  407. 'use strict';
  408. var language = {
  409. langLocaleCode: 'en-GB',
  410. cultureCode: 'en-GB',
  411. delimiters: {
  412. thousands: ',',
  413. decimal: '.'
  414. },
  415. abbreviations: {
  416. thousand: 'k',
  417. million: 'm',
  418. billion: 'b',
  419. trillion: 't'
  420. },
  421. ordinal: function (number) {
  422. var b = number % 10;
  423. return (~~ (number % 100 / 10) === 1) ? 'th' :
  424. (b === 1) ? 'st' :
  425. (b === 2) ? 'nd' :
  426. (b === 3) ? 'rd' : 'th';
  427. },
  428. currency: {
  429. symbol: '£',
  430. position: 'prefix'
  431. },
  432. defaults: {
  433. currencyFormat: ',4 a'
  434. },
  435. formats: {
  436. fourDigits: '4 a',
  437. fullWithTwoDecimals: '$ ,0.00',
  438. fullWithTwoDecimalsNoCurrency: ',0.00',
  439. fullWithNoDecimals: '$ ,0'
  440. }
  441. };
  442. // CommonJS
  443. if (typeof module !== 'undefined' && module.exports) {
  444. module.exports = language;
  445. }
  446. // Browser
  447. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  448. window.numbro.culture(language.cultureCode, language);
  449. }
  450. }.call(typeof window === 'undefined' ? this : window));
  451. /*!
  452. + * numbro.js language configuration
  453. * language : English
  454. * locale: Ireland
  455. * author : Tim McIntosh (StayinFront NZ)
  456. */
  457. (function () {
  458. 'use strict';
  459. var language = {
  460. langLocaleCode: 'en-IE',
  461. cultureCode: 'en-IE',
  462. delimiters: {
  463. thousands: ',',
  464. decimal: '.'
  465. },
  466. abbreviations: {
  467. thousand: 'k',
  468. million: 'm',
  469. billion: 'b',
  470. trillion: 't'
  471. },
  472. ordinal: function (number) {
  473. var b = number % 10;
  474. return (~~(number % 100 / 10) === 1) ? 'th' :
  475. (b === 1) ? 'st' :
  476. (b === 2) ? 'nd' :
  477. (b === 3) ? 'rd' : 'th';
  478. },
  479. currency: {
  480. symbol: '€'
  481. }
  482. };
  483. // Node
  484. if (typeof module !== 'undefined' && module.exports) {
  485. module.exports = language;
  486. }
  487. // Browser
  488. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  489. window.numbro.culture('en-gb', language);
  490. }
  491. }.call(typeof window === 'undefined' ? this : window));
  492. /*!
  493. * numbro.js language configuration
  494. * language : English
  495. * locale: New Zealand
  496. * author : Benedikt Huss : https://github.com/ben305
  497. */
  498. (function () {
  499. 'use strict';
  500. var language = {
  501. langLocaleCode: 'en-NZ',
  502. cultureCode: 'en-NZ',
  503. delimiters: {
  504. thousands: ',',
  505. decimal: '.'
  506. },
  507. abbreviations: {
  508. thousand: 'k',
  509. million: 'm',
  510. billion: 'b',
  511. trillion: 't'
  512. },
  513. ordinal: function (number) {
  514. var b = number % 10;
  515. return (~~ (number % 100 / 10) === 1) ? 'th' :
  516. (b === 1) ? 'st' :
  517. (b === 2) ? 'nd' :
  518. (b === 3) ? 'rd' : 'th';
  519. },
  520. currency: {
  521. symbol: '$',
  522. position: 'prefix'
  523. },
  524. defaults: {
  525. currencyFormat: ',4 a'
  526. },
  527. formats: {
  528. fourDigits: '4 a',
  529. fullWithTwoDecimals: '$ ,0.00',
  530. fullWithTwoDecimalsNoCurrency: ',0.00',
  531. fullWithNoDecimals: '$ ,0'
  532. }
  533. };
  534. // CommonJS
  535. if (typeof module !== 'undefined' && module.exports) {
  536. module.exports = language;
  537. }
  538. // Browser
  539. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  540. window.numbro.culture(language.cultureCode, language);
  541. }
  542. }.call(typeof window === 'undefined' ? this : window));
  543. /*!
  544. * numbro.js language configuration
  545. * language : English
  546. * locale: South Africa
  547. * author : Stewart Scott https://github.com/stewart42
  548. */
  549. (function () {
  550. 'use strict';
  551. var language = {
  552. langLocaleCode: 'en-ZA',
  553. cultureCode: 'en-ZA',
  554. delimiters: {
  555. thousands: ' ',
  556. decimal: ','
  557. },
  558. abbreviations: {
  559. thousand: 'k',
  560. million: 'm',
  561. billion: 'b',
  562. trillion: 't'
  563. },
  564. ordinal: function (number) {
  565. var b = number % 10;
  566. return (~~ (number % 100 / 10) === 1) ? 'th' :
  567. (b === 1) ? 'st' :
  568. (b === 2) ? 'nd' :
  569. (b === 3) ? 'rd' : 'th';
  570. },
  571. currency: {
  572. symbol: 'R',
  573. position: 'prefix'
  574. },
  575. defaults: {
  576. currencyFormat: ',4 a'
  577. },
  578. formats: {
  579. fourDigits: '4 a',
  580. fullWithTwoDecimals: '$ ,0.00',
  581. fullWithTwoDecimalsNoCurrency: ',0.00',
  582. fullWithNoDecimals: '$ ,0'
  583. }
  584. };
  585. // CommonJS
  586. if (typeof module !== 'undefined' && module.exports) {
  587. module.exports = language;
  588. }
  589. // Browser
  590. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  591. window.numbro.culture(language.cultureCode, language);
  592. }
  593. }.call(typeof window === 'undefined' ? this : window));
  594. /*!
  595. * numbro.js language configuration
  596. * language : Spanish
  597. * locale: Argentina
  598. * author : Hernan Garcia : https://github.com/hgarcia
  599. */
  600. (function () {
  601. 'use strict';
  602. var language = {
  603. langLocaleCode: 'es-AR',
  604. cultureCode: 'es-AR',
  605. delimiters: {
  606. thousands: '.',
  607. decimal: ','
  608. },
  609. abbreviations: {
  610. thousand: 'k',
  611. million: 'mm',
  612. billion: 'b',
  613. trillion: 't'
  614. },
  615. ordinal: function (number) {
  616. var b = number % 10;
  617. return (b === 1 || b === 3) ? 'er' :
  618. (b === 2) ? 'do' :
  619. (b === 7 || b === 0) ? 'mo' :
  620. (b === 8) ? 'vo' :
  621. (b === 9) ? 'no' : 'to';
  622. },
  623. currency: {
  624. symbol: '$',
  625. position: 'postfix'
  626. },
  627. defaults: {
  628. currencyFormat: ',4 a'
  629. },
  630. formats: {
  631. fourDigits: '4 a',
  632. fullWithTwoDecimals: ',0.00 $',
  633. fullWithTwoDecimalsNoCurrency: ',0.00',
  634. fullWithNoDecimals: ',0 $'
  635. }
  636. };
  637. // CommonJS
  638. if (typeof module !== 'undefined' && module.exports) {
  639. module.exports = language;
  640. }
  641. // Browser
  642. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  643. window.numbro.culture(language.cultureCode, language);
  644. }
  645. }.call(typeof window === 'undefined' ? this : window));
  646. /*!
  647. * numbro.js language configuration
  648. * language : Spanish
  649. * locale: Chile
  650. * author : Gwyn Judd : https://github.com/gwynjudd
  651. */
  652. (function () {
  653. 'use strict';
  654. var language = {
  655. langLocaleCode: 'es-CL',
  656. cultureCode: 'es-CL',
  657. delimiters: {
  658. thousands: '.',
  659. decimal: ','
  660. },
  661. abbreviations: {
  662. thousand: 'k',
  663. million: 'mm',
  664. billion: 'b',
  665. trillion: 't'
  666. },
  667. ordinal: function (number) {
  668. var b = number % 10;
  669. return (b === 1 || b === 3) ? 'er' :
  670. (b === 2) ? 'do' :
  671. (b === 7 || b === 0) ? 'mo' :
  672. (b === 8) ? 'vo' :
  673. (b === 9) ? 'no' : 'to';
  674. },
  675. currency: {
  676. symbol: '$',
  677. position: 'prefix'
  678. },
  679. defaults: {
  680. currencyFormat: '$0,0'
  681. },
  682. formats: {
  683. fourDigits: '4 a',
  684. fullWithTwoDecimals: ',0.00 $',
  685. fullWithTwoDecimalsNoCurrency: ',0.00',
  686. fullWithNoDecimals: ',0 $'
  687. }
  688. };
  689. // CommonJS
  690. if (typeof module !== 'undefined' && module.exports) {
  691. module.exports = language;
  692. }
  693. // Browser
  694. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  695. window.numbro.culture(language.cultureCode, language);
  696. }
  697. }.call(typeof window === 'undefined' ? this : window));
  698. /*!
  699. * numbro.js language configuration
  700. * language : Spanish
  701. * locale: Colombia
  702. * author : Gwyn Judd : https://github.com/gwynjudd
  703. */
  704. (function () {
  705. 'use strict';
  706. var language = {
  707. langLocaleCode: 'es-CO',
  708. cultureCode: 'es-CO',
  709. delimiters: {
  710. thousands: '.',
  711. decimal: ','
  712. },
  713. abbreviations: {
  714. thousand: 'k',
  715. million: 'mm',
  716. billion: 'b',
  717. trillion: 't'
  718. },
  719. ordinal: function (number) {
  720. var b = number % 10;
  721. return (b === 1 || b === 3) ? 'er' :
  722. (b === 2) ? 'do' :
  723. (b === 7 || b === 0) ? 'mo' :
  724. (b === 8) ? 'vo' :
  725. (b === 9) ? 'no' : 'to';
  726. },
  727. currency: {
  728. symbol: '€',
  729. position: 'postfix'
  730. },
  731. defaults: {
  732. currencyFormat: ',4 a'
  733. },
  734. formats: {
  735. fourDigits: '4 a',
  736. fullWithTwoDecimals: ',0.00 $',
  737. fullWithTwoDecimalsNoCurrency: ',0.00',
  738. fullWithNoDecimals: ',0 $'
  739. }
  740. };
  741. // CommonJS
  742. if (typeof module !== 'undefined' && module.exports) {
  743. module.exports = language;
  744. }
  745. // Browser
  746. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  747. window.numbro.culture(language.cultureCode, language);
  748. }
  749. }.call(typeof window === 'undefined' ? this : window));
  750. /*!
  751. * numbro.js language configuration
  752. * language : Spanish
  753. * locale: Costa Rica
  754. * author : Gwyn Judd : https://github.com/gwynjudd
  755. */
  756. (function () {
  757. 'use strict';
  758. var language = {
  759. langLocaleCode: 'es-CR',
  760. cultureCode: 'es-CR',
  761. delimiters: {
  762. thousands: ' ',
  763. decimal: ','
  764. },
  765. abbreviations: {
  766. thousand: 'k',
  767. million: 'mm',
  768. billion: 'b',
  769. trillion: 't'
  770. },
  771. ordinal: function (number) {
  772. var b = number % 10;
  773. return (b === 1 || b === 3) ? 'er' :
  774. (b === 2) ? 'do' :
  775. (b === 7 || b === 0) ? 'mo' :
  776. (b === 8) ? 'vo' :
  777. (b === 9) ? 'no' : 'to';
  778. },
  779. currency: {
  780. symbol: '₡',
  781. position: 'postfix'
  782. },
  783. defaults: {
  784. currencyFormat: ',4 a'
  785. },
  786. formats: {
  787. fourDigits: '4 a',
  788. fullWithTwoDecimals: ',0.00 $',
  789. fullWithTwoDecimalsNoCurrency: ',0.00',
  790. fullWithNoDecimals: ',0 $'
  791. }
  792. };
  793. // CommonJS
  794. if (typeof module !== 'undefined' && module.exports) {
  795. module.exports = language;
  796. }
  797. // Browser
  798. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  799. window.numbro.culture(language.cultureCode, language);
  800. }
  801. }.call(typeof window === 'undefined' ? this : window));
  802. /*!
  803. * numbro.js language configuration
  804. * language : Spanish
  805. * locale: Spain
  806. * author : Hernan Garcia : https://github.com/hgarcia
  807. */
  808. (function () {
  809. 'use strict';
  810. var language = {
  811. langLocaleCode: 'es-ES',
  812. cultureCode: 'es-ES',
  813. delimiters: {
  814. thousands: '.',
  815. decimal: ','
  816. },
  817. abbreviations: {
  818. thousand: 'k',
  819. million: 'mm',
  820. billion: 'b',
  821. trillion: 't'
  822. },
  823. ordinal: function (number) {
  824. var b = number % 10;
  825. return (b === 1 || b === 3) ? 'er' :
  826. (b === 2) ? 'do' :
  827. (b === 7 || b === 0) ? 'mo' :
  828. (b === 8) ? 'vo' :
  829. (b === 9) ? 'no' : 'to';
  830. },
  831. currency: {
  832. symbol: '€',
  833. position: 'postfix'
  834. },
  835. defaults: {
  836. currencyFormat: ',4 a'
  837. },
  838. formats: {
  839. fourDigits: '4 a',
  840. fullWithTwoDecimals: ',0.00 $',
  841. fullWithTwoDecimalsNoCurrency: ',0.00',
  842. fullWithNoDecimals: ',0 $'
  843. }
  844. };
  845. // CommonJS
  846. if (typeof module !== 'undefined' && module.exports) {
  847. module.exports = language;
  848. }
  849. // Browser
  850. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  851. window.numbro.culture(language.cultureCode, language);
  852. }
  853. }.call(typeof window === 'undefined' ? this : window));
  854. /*!
  855. * numbro.js language configuration
  856. * language : Spanish
  857. * locale: Nicaragua
  858. * author : Gwyn Judd : https://github.com/gwynjudd
  859. */
  860. (function () {
  861. 'use strict';
  862. var language = {
  863. langLocaleCode: 'es-NI',
  864. cultureCode: 'es-NI',
  865. delimiters: {
  866. thousands: ',',
  867. decimal: '.'
  868. },
  869. abbreviations: {
  870. thousand: 'k',
  871. million: 'mm',
  872. billion: 'b',
  873. trillion: 't'
  874. },
  875. ordinal: function (number) {
  876. var b = number % 10;
  877. return (b === 1 || b === 3) ? 'er' :
  878. (b === 2) ? 'do' :
  879. (b === 7 || b === 0) ? 'mo' :
  880. (b === 8) ? 'vo' :
  881. (b === 9) ? 'no' : 'to';
  882. },
  883. currency: {
  884. symbol: 'C$',
  885. position: 'prefix'
  886. },
  887. defaults: {
  888. currencyFormat: ',4 a'
  889. },
  890. formats: {
  891. fourDigits: '4 a',
  892. fullWithTwoDecimals: ',0.00 $',
  893. fullWithTwoDecimalsNoCurrency: ',0.00',
  894. fullWithNoDecimals: ',0 $'
  895. }
  896. };
  897. // CommonJS
  898. if (typeof module !== 'undefined' && module.exports) {
  899. module.exports = language;
  900. }
  901. // Browser
  902. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  903. window.numbro.culture(language.cultureCode, language);
  904. }
  905. }.call(typeof window === 'undefined' ? this : window));
  906. /*!
  907. * numbro.js language configuration
  908. * language : Spanish
  909. * locale: Peru
  910. * author : Gwyn Judd : https://github.com/gwynjudd
  911. */
  912. (function () {
  913. 'use strict';
  914. var language = {
  915. langLocaleCode: 'es-PE',
  916. cultureCode: 'es-PE',
  917. delimiters: {
  918. thousands: ',',
  919. decimal: '.'
  920. },
  921. abbreviations: {
  922. thousand: 'k',
  923. million: 'mm',
  924. billion: 'b',
  925. trillion: 't'
  926. },
  927. ordinal: function (number) {
  928. var b = number % 10;
  929. return (b === 1 || b === 3) ? 'er' :
  930. (b === 2) ? 'do' :
  931. (b === 7 || b === 0) ? 'mo' :
  932. (b === 8) ? 'vo' :
  933. (b === 9) ? 'no' : 'to';
  934. },
  935. currency: {
  936. symbol: 'S/.',
  937. position: 'prefix'
  938. },
  939. defaults: {
  940. currencyFormat: ',4 a'
  941. },
  942. formats: {
  943. fourDigits: '4 a',
  944. fullWithTwoDecimals: ',0.00 $',
  945. fullWithTwoDecimalsNoCurrency: ',0.00',
  946. fullWithNoDecimals: ',0 $'
  947. }
  948. };
  949. // CommonJS
  950. if (typeof module !== 'undefined' && module.exports) {
  951. module.exports = language;
  952. }
  953. // Browser
  954. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  955. window.numbro.culture(language.cultureCode, language);
  956. }
  957. }.call(typeof window === 'undefined' ? this : window));
  958. /*!
  959. * numbro.js language configuration
  960. * language : Spanish
  961. * locale: Puerto Rico
  962. * author : Gwyn Judd : https://github.com/gwynjudd
  963. */
  964. (function () {
  965. 'use strict';
  966. var language = {
  967. langLocaleCode: 'es-PR',
  968. cultureCode: 'es-PR',
  969. delimiters: {
  970. thousands: ',',
  971. decimal: '.'
  972. },
  973. abbreviations: {
  974. thousand: 'k',
  975. million: 'mm',
  976. billion: 'b',
  977. trillion: 't'
  978. },
  979. ordinal: function (number) {
  980. var b = number % 10;
  981. return (b === 1 || b === 3) ? 'er' :
  982. (b === 2) ? 'do' :
  983. (b === 7 || b === 0) ? 'mo' :
  984. (b === 8) ? 'vo' :
  985. (b === 9) ? 'no' : 'to';
  986. },
  987. currency: {
  988. symbol: '$',
  989. position: 'prefix'
  990. },
  991. defaults: {
  992. currencyFormat: ',4 a'
  993. },
  994. formats: {
  995. fourDigits: '4 a',
  996. fullWithTwoDecimals: ',0.00 $',
  997. fullWithTwoDecimalsNoCurrency: ',0.00',
  998. fullWithNoDecimals: ',0 $'
  999. }
  1000. };
  1001. // CommonJS
  1002. if (typeof module !== 'undefined' && module.exports) {
  1003. module.exports = language;
  1004. }
  1005. // Browser
  1006. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1007. window.numbro.culture(language.cultureCode, language);
  1008. }
  1009. }.call(typeof window === 'undefined' ? this : window));
  1010. /*!
  1011. * numbro.js language configuration
  1012. * language : Spanish
  1013. * locale: El Salvador
  1014. * author : Gwyn Judd : https://github.com/gwynjudd
  1015. */
  1016. (function () {
  1017. 'use strict';
  1018. var language = {
  1019. langLocaleCode: 'es-SV',
  1020. cultureCode: 'es-SV',
  1021. delimiters: {
  1022. thousands: ',',
  1023. decimal: '.'
  1024. },
  1025. abbreviations: {
  1026. thousand: 'k',
  1027. million: 'mm',
  1028. billion: 'b',
  1029. trillion: 't'
  1030. },
  1031. ordinal: function (number) {
  1032. var b = number % 10;
  1033. return (b === 1 || b === 3) ? 'er' :
  1034. (b === 2) ? 'do' :
  1035. (b === 7 || b === 0) ? 'mo' :
  1036. (b === 8) ? 'vo' :
  1037. (b === 9) ? 'no' : 'to';
  1038. },
  1039. currency: {
  1040. symbol: '$',
  1041. position: 'prefix'
  1042. },
  1043. defaults: {
  1044. currencyFormat: ',4 a'
  1045. },
  1046. formats: {
  1047. fourDigits: '4 a',
  1048. fullWithTwoDecimals: ',0.00 $',
  1049. fullWithTwoDecimalsNoCurrency: ',0.00',
  1050. fullWithNoDecimals: ',0 $'
  1051. }
  1052. };
  1053. // CommonJS
  1054. if (typeof module !== 'undefined' && module.exports) {
  1055. module.exports = language;
  1056. }
  1057. // Browser
  1058. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1059. window.numbro.culture(language.cultureCode, language);
  1060. }
  1061. }.call(typeof window === 'undefined' ? this : window));
  1062. /*!
  1063. * numbro.js language configuration
  1064. * language : Estonian
  1065. * locale: Estonia
  1066. * author : Illimar Tambek : https://github.com/ragulka
  1067. *
  1068. * Note: in Estonian, abbreviations are always separated
  1069. * from numbers with a space
  1070. */
  1071. (function () {
  1072. 'use strict';
  1073. var language = {
  1074. langLocaleCode: 'et-EE',
  1075. cultureCode: 'et-EE',
  1076. delimiters: {
  1077. thousands: ' ',
  1078. decimal: ','
  1079. },
  1080. abbreviations: {
  1081. thousand: ' tuh',
  1082. million: ' mln',
  1083. billion: ' mld',
  1084. trillion: ' trl'
  1085. },
  1086. ordinal: function () {
  1087. return '.';
  1088. },
  1089. currency: {
  1090. symbol: '€',
  1091. position: 'postfix'
  1092. },
  1093. defaults: {
  1094. currencyFormat: ',4 a'
  1095. },
  1096. formats: {
  1097. fourDigits: '4 a',
  1098. fullWithTwoDecimals: ',0.00 $',
  1099. fullWithTwoDecimalsNoCurrency: ',0.00',
  1100. fullWithNoDecimals: ',0 $'
  1101. }
  1102. };
  1103. // CommonJS
  1104. if (typeof module !== 'undefined' && module.exports) {
  1105. module.exports = language;
  1106. }
  1107. // Browser
  1108. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1109. window.numbro.culture(language.cultureCode, language);
  1110. }
  1111. }.call(typeof window === 'undefined' ? this : window));
  1112. /*!
  1113. * numbro.js language configuration
  1114. * language : Farsi
  1115. * locale: Iran
  1116. * author : neo13 : https://github.com/neo13
  1117. */
  1118. (function () {
  1119. 'use strict';
  1120. var language = {
  1121. langLocaleCode: 'fa-IR',
  1122. cultureCode: 'fa-IR',
  1123. delimiters: {
  1124. thousands: '،',
  1125. decimal: '.'
  1126. },
  1127. abbreviations: {
  1128. thousand: 'هزار',
  1129. million: 'میلیون',
  1130. billion: 'میلیارد',
  1131. trillion: 'تریلیون'
  1132. },
  1133. ordinal: function () {
  1134. return 'ام';
  1135. },
  1136. currency: {
  1137. symbol: '﷼'
  1138. }
  1139. };
  1140. // CommonJS
  1141. if (typeof module !== 'undefined' && module.exports) {
  1142. module.exports = language;
  1143. }
  1144. // Browser
  1145. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1146. window.numbro.culture(language.cultureCode, language);
  1147. }
  1148. }.call(typeof window === 'undefined' ? this : window));
  1149. /*!
  1150. * numbro.js language configuration
  1151. * language : Finnish
  1152. * locale: Finland
  1153. * author : Sami Saada : https://github.com/samitheberber
  1154. */
  1155. (function () {
  1156. 'use strict';
  1157. var language = {
  1158. langLocaleCode: 'fi-FI',
  1159. cultureCode: 'fi-FI',
  1160. delimiters: {
  1161. thousands: ' ',
  1162. decimal: ','
  1163. },
  1164. abbreviations: {
  1165. thousand: 'k',
  1166. million: 'M',
  1167. billion: 'G',
  1168. trillion: 'T'
  1169. },
  1170. ordinal: function () {
  1171. return '.';
  1172. },
  1173. currency: {
  1174. symbol: '€',
  1175. position: 'postfix'
  1176. },
  1177. defaults: {
  1178. currencyFormat: ',4 a'
  1179. },
  1180. formats: {
  1181. fourDigits: '4 a',
  1182. fullWithTwoDecimals: ',0.00 $',
  1183. fullWithTwoDecimalsNoCurrency: ',0.00',
  1184. fullWithNoDecimals: ',0 $'
  1185. }
  1186. };
  1187. // CommonJS
  1188. if (typeof module !== 'undefined' && module.exports) {
  1189. module.exports = language;
  1190. }
  1191. // Browser
  1192. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1193. window.numbro.culture(language.cultureCode, language);
  1194. }
  1195. }.call(typeof window === 'undefined' ? this : window));
  1196. /*!
  1197. * numbro.js language configuration
  1198. * language : Filipino (Pilipino)
  1199. * locale: Philippines
  1200. * author : Michael Abadilla : https://github.com/mjmaix
  1201. */
  1202. (function () {
  1203. 'use strict';
  1204. var language = {
  1205. langLocaleCode: 'fil-PH',
  1206. cultureCode: 'fil-PH',
  1207. delimiters: {
  1208. thousands: ',',
  1209. decimal: '.'
  1210. },
  1211. abbreviations: {
  1212. thousand: 'k',
  1213. million: 'm',
  1214. billion: 'b',
  1215. trillion: 't'
  1216. },
  1217. ordinal: function (number) {
  1218. var b = number % 10;
  1219. return (~~ (number % 100 / 10) === 1) ? 'th' :
  1220. (b === 1) ? 'st' :
  1221. (b === 2) ? 'nd' :
  1222. (b === 3) ? 'rd' : 'th';
  1223. },
  1224. currency: {
  1225. symbol: '₱'
  1226. }
  1227. };
  1228. // CommonJS
  1229. if (typeof module !== 'undefined' && module.exports) {
  1230. module.exports = language;
  1231. }
  1232. // Browser
  1233. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1234. window.numbro.culture(language.cultureCode, language);
  1235. }
  1236. }.call(typeof window === 'undefined' ? this : window));
  1237. /*!
  1238. * numbro.js language configuration
  1239. * language : French
  1240. * locale: Canada
  1241. * author : Léo Renaud-Allaire : https://github.com/renaudleo
  1242. */
  1243. (function () {
  1244. 'use strict';
  1245. var language = {
  1246. langLocaleCode: 'fr-CA',
  1247. cultureCode: 'fr-CA',
  1248. delimiters: {
  1249. thousands: ' ',
  1250. decimal: ','
  1251. },
  1252. abbreviations: {
  1253. thousand: 'k',
  1254. million: 'M',
  1255. billion: 'G',
  1256. trillion: 'T'
  1257. },
  1258. ordinal : function (number) {
  1259. return number === 1 ? 'er' : 'ème';
  1260. },
  1261. currency: {
  1262. symbol: '$',
  1263. position: 'postfix',
  1264. spaceSeparated : true
  1265. },
  1266. defaults: {
  1267. currencyFormat: ',4 a'
  1268. },
  1269. formats: {
  1270. fourDigits: '4 a',
  1271. fullWithTwoDecimals: '$ ,0.00',
  1272. fullWithTwoDecimalsNoCurrency: ',0.00',
  1273. fullWithNoDecimals: '$ ,0'
  1274. }
  1275. };
  1276. // CommonJS
  1277. if (typeof module !== 'undefined' && module.exports) {
  1278. module.exports = language;
  1279. }
  1280. // Browser
  1281. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1282. window.numbro.culture(language.cultureCode, language);
  1283. }
  1284. }.call(typeof window === 'undefined' ? this : window));
  1285. /*!
  1286. * numbro.js language configuration
  1287. * language : French
  1288. * locale: Switzerland
  1289. * author : Adam Draper : https://github.com/adamwdraper
  1290. */
  1291. (function () {
  1292. 'use strict';
  1293. var language = {
  1294. langLocaleCode: 'fr-CH',
  1295. cultureCode: 'fr-CH',
  1296. delimiters: {
  1297. thousands: ' ',
  1298. decimal: '.'
  1299. },
  1300. abbreviations: {
  1301. thousand: 'k',
  1302. million: 'm',
  1303. billion: 'b',
  1304. trillion: 't'
  1305. },
  1306. ordinal : function (number) {
  1307. return number === 1 ? 'er' : 'ème';
  1308. },
  1309. currency: {
  1310. symbol: 'CHF',
  1311. position: 'postfix'
  1312. },
  1313. defaults: {
  1314. currencyFormat: ',4 a'
  1315. },
  1316. formats: {
  1317. fourDigits: '4 a',
  1318. fullWithTwoDecimals: ',0.00 $',
  1319. fullWithTwoDecimalsNoCurrency: ',0.00',
  1320. fullWithNoDecimals: ',0 $'
  1321. }
  1322. };
  1323. // CommonJS
  1324. if (typeof module !== 'undefined' && module.exports) {
  1325. module.exports = language;
  1326. }
  1327. // Browser
  1328. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1329. window.numbro.culture(language.cultureCode, language);
  1330. }
  1331. }.call(typeof window === 'undefined' ? this : window));
  1332. /*!
  1333. * numbro.js language configuration
  1334. * language : French
  1335. * locale: France
  1336. * author : Adam Draper : https://github.com/adamwdraper
  1337. */
  1338. (function () {
  1339. 'use strict';
  1340. var language = {
  1341. langLocaleCode: 'fr-FR',
  1342. cultureCode: 'fr-FR',
  1343. delimiters: {
  1344. thousands: ' ',
  1345. decimal: ','
  1346. },
  1347. abbreviations: {
  1348. thousand: 'k',
  1349. million: 'm',
  1350. billion: 'b',
  1351. trillion: 't'
  1352. },
  1353. ordinal : function (number) {
  1354. return number === 1 ? 'er' : 'ème';
  1355. },
  1356. currency: {
  1357. symbol: '€',
  1358. position: 'postfix'
  1359. },
  1360. defaults: {
  1361. currencyFormat: ',4 a'
  1362. },
  1363. formats: {
  1364. fourDigits: '4 a',
  1365. fullWithTwoDecimals: ',0.00 $',
  1366. fullWithTwoDecimalsNoCurrency: ',0.00',
  1367. fullWithNoDecimals: ',0 $'
  1368. }
  1369. };
  1370. // CommonJS
  1371. if (typeof module !== 'undefined' && module.exports) {
  1372. module.exports = language;
  1373. }
  1374. // Browser
  1375. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1376. window.numbro.culture(language.cultureCode, language);
  1377. }
  1378. }.call(typeof window === 'undefined' ? this : window));
  1379. /*!
  1380. * numbro.js language configuration
  1381. * language : Hebrew
  1382. * locale : IL
  1383. * author : Eli Zehavi : https://github.com/eli-zehavi
  1384. */
  1385. (function () {
  1386. 'use strict';
  1387. var language = {
  1388. langLocaleCode: 'he-IL',
  1389. cultureCode: 'he-IL',
  1390. delimiters: {
  1391. thousands: ',',
  1392. decimal: '.'
  1393. },
  1394. abbreviations: {
  1395. thousand: 'אלף',
  1396. million: 'מליון',
  1397. billion: 'בליון',
  1398. trillion: 'טריליון'
  1399. },
  1400. currency: {
  1401. symbol: '₪',
  1402. position: 'prefix'
  1403. },
  1404. defaults: {
  1405. currencyFormat: ',4 a'
  1406. },
  1407. formats: {
  1408. fourDigits: '4 a',
  1409. fullWithTwoDecimals: '₪ ,0.00',
  1410. fullWithTwoDecimalsNoCurrency: ',0.00',
  1411. fullWithNoDecimals: '₪ ,0'
  1412. }
  1413. };
  1414. // CommonJS
  1415. if (typeof module !== 'undefined' && module.exports) {
  1416. module.exports = language;
  1417. }
  1418. // Browser
  1419. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1420. window.numbro.culture(language.cultureCode, language);
  1421. }
  1422. }.call(typeof window === 'undefined' ? this : window));
  1423. /*!
  1424. * numbro.js language configuration
  1425. * language : Hungarian
  1426. * locale: Hungary
  1427. * author : Peter Bakondy : https://github.com/pbakondy
  1428. */
  1429. (function () {
  1430. 'use strict';
  1431. var language = {
  1432. langLocaleCode: 'hu-HU',
  1433. cultureCode: 'hu-HU',
  1434. delimiters: {
  1435. thousands: ' ',
  1436. decimal: ','
  1437. },
  1438. abbreviations: {
  1439. thousand: 'E', // ezer
  1440. million: 'M', // millió
  1441. billion: 'Mrd', // milliárd
  1442. trillion: 'T' // trillió
  1443. },
  1444. ordinal: function () {
  1445. return '.';
  1446. },
  1447. currency: {
  1448. symbol: ' Ft',
  1449. position: 'postfix'
  1450. },
  1451. defaults: {
  1452. currencyFormat: ',4 a'
  1453. },
  1454. formats: {
  1455. fourDigits: '4 a',
  1456. fullWithTwoDecimals: ',0.00 $',
  1457. fullWithTwoDecimalsNoCurrency: ',0.00',
  1458. fullWithNoDecimals: ',0 $'
  1459. }
  1460. };
  1461. // CommonJS
  1462. if (typeof module !== 'undefined' && module.exports) {
  1463. module.exports = language;
  1464. }
  1465. // Browser
  1466. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1467. window.numbro.culture(language.cultureCode, language);
  1468. }
  1469. }.call(typeof window === 'undefined' ? this : window));
  1470. /*!
  1471. * numbro.js language configuration
  1472. * language : Indonesian
  1473. * author : Tim McIntosh (StayinFront NZ)
  1474. */
  1475. (function () {
  1476. 'use strict';
  1477. var language = {
  1478. langLocaleCode: 'id',
  1479. cultureCode: 'id',
  1480. delimiters: {
  1481. thousands: ',',
  1482. decimal: '.'
  1483. },
  1484. abbreviations: {
  1485. thousand: 'r',
  1486. million: 'j',
  1487. billion: 'm',
  1488. trillion: 't'
  1489. },
  1490. ordinal: function () {
  1491. return '.';
  1492. },
  1493. currency: {
  1494. symbol: 'Rp'
  1495. }
  1496. };
  1497. // Node
  1498. if (typeof module !== 'undefined' && module.exports) {
  1499. module.exports = language;
  1500. }
  1501. // Browser
  1502. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1503. window.numbro.culture('id', language);
  1504. }
  1505. }.call(typeof window === 'undefined' ? this : window));
  1506. /*!
  1507. * numbro.js language configuration
  1508. * language : Italian
  1509. * locale: Switzerland
  1510. * author : Tim McIntosh (StayinFront NZ)
  1511. */
  1512. (function () {
  1513. 'use strict';
  1514. var language = {
  1515. langLocaleCode: 'it-CH',
  1516. cultureCode: 'it-CH',
  1517. delimiters: {
  1518. thousands: '\'',
  1519. decimal: '.'
  1520. },
  1521. abbreviations: {
  1522. thousand: 'mila',
  1523. million: 'mil',
  1524. billion: 'b',
  1525. trillion: 't'
  1526. },
  1527. ordinal: function () {
  1528. return '°';
  1529. },
  1530. currency: {
  1531. symbol: 'CHF'
  1532. }
  1533. };
  1534. // Node
  1535. if (typeof module !== 'undefined' && module.exports) {
  1536. module.exports = language;
  1537. }
  1538. // Browser
  1539. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1540. window.numbro.culture('it-CH', language);
  1541. }
  1542. }.call(typeof window === 'undefined' ? this : window));
  1543. /*!
  1544. * numbro.js language configuration
  1545. * language : Italian
  1546. * locale: Italy
  1547. * author : Giacomo Trombi : http://cinquepunti.it
  1548. */
  1549. (function () {
  1550. 'use strict';
  1551. var language = {
  1552. langLocaleCode: 'it-IT',
  1553. cultureCode: 'it-IT',
  1554. delimiters: {
  1555. thousands: '.',
  1556. decimal: ','
  1557. },
  1558. abbreviations: {
  1559. thousand: 'mila',
  1560. million: 'mil',
  1561. billion: 'b',
  1562. trillion: 't'
  1563. },
  1564. ordinal: function () {
  1565. return 'º';
  1566. },
  1567. currency: {
  1568. symbol: '€',
  1569. position: 'postfix'
  1570. },
  1571. defaults: {
  1572. currencyFormat: ',4 a'
  1573. },
  1574. formats: {
  1575. fourDigits: '4 a',
  1576. fullWithTwoDecimals: ',0.00 $',
  1577. fullWithTwoDecimalsNoCurrency: ',0.00',
  1578. fullWithNoDecimals: ',0 $'
  1579. }
  1580. };
  1581. // CommonJS
  1582. if (typeof module !== 'undefined' && module.exports) {
  1583. module.exports = language;
  1584. }
  1585. // Browser
  1586. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1587. window.numbro.culture(language.cultureCode, language);
  1588. }
  1589. }.call(typeof window === 'undefined' ? this : window));
  1590. /*!
  1591. * numbro.js language configuration
  1592. * language : Japanese
  1593. * locale: Japan
  1594. * author : teppeis : https://github.com/teppeis
  1595. */
  1596. (function () {
  1597. 'use strict';
  1598. var language = {
  1599. langLocaleCode: 'ja-JP',
  1600. cultureCode: 'ja-JP',
  1601. delimiters: {
  1602. thousands: ',',
  1603. decimal: '.'
  1604. },
  1605. abbreviations: {
  1606. thousand: '千',
  1607. million: '百万',
  1608. billion: '十億',
  1609. trillion: '兆'
  1610. },
  1611. ordinal: function () {
  1612. return '.';
  1613. },
  1614. currency: {
  1615. symbol: '¥',
  1616. position: 'prefix'
  1617. },
  1618. defaults: {
  1619. currencyFormat: ',4 a'
  1620. },
  1621. formats: {
  1622. fourDigits: '4 a',
  1623. fullWithTwoDecimals: '$ ,0.00',
  1624. fullWithTwoDecimalsNoCurrency: ',0.00',
  1625. fullWithNoDecimals: '$ ,0'
  1626. }
  1627. };
  1628. // CommonJS
  1629. if (typeof module !== 'undefined' && module.exports) {
  1630. module.exports = language;
  1631. }
  1632. // Browser
  1633. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1634. window.numbro.culture(language.cultureCode, language);
  1635. }
  1636. }.call(typeof window === 'undefined' ? this : window));
  1637. /*!
  1638. * numbro.js language configuration
  1639. * language : Korean
  1640. * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway
  1641. * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git
  1642. */
  1643. (function () {
  1644. 'use strict';
  1645. var language = {
  1646. langLocaleCode: 'ko-KR',
  1647. cultureCode: 'ko-KR',
  1648. delimiters: {
  1649. thousands: ',',
  1650. decimal: '.'
  1651. },
  1652. abbreviations: {
  1653. thousand: '천',
  1654. million: '백만',
  1655. billion: '십억',
  1656. trillion: '일조'
  1657. },
  1658. ordinal: function () {
  1659. return '.';
  1660. },
  1661. currency: {
  1662. symbol: '₩'
  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 : Latvian
  1677. * locale: Latvia
  1678. * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks
  1679. */
  1680. (function () {
  1681. 'use strict';
  1682. var language = {
  1683. langLocaleCode: 'lv-LV',
  1684. cultureCode: 'lv-LV',
  1685. delimiters: {
  1686. thousands: ' ',
  1687. decimal: ','
  1688. },
  1689. abbreviations: {
  1690. thousand: ' tūkst.',
  1691. million: ' milj.',
  1692. billion: ' mljrd.',
  1693. trillion: ' trilj.'
  1694. },
  1695. ordinal: function () {
  1696. return '.';
  1697. },
  1698. currency: {
  1699. symbol: '€',
  1700. position: 'postfix'
  1701. },
  1702. defaults: {
  1703. currencyFormat: ',4 a'
  1704. },
  1705. formats: {
  1706. fourDigits: '4 a',
  1707. fullWithTwoDecimals: ',0.00 $',
  1708. fullWithTwoDecimalsNoCurrency: ',0.00',
  1709. fullWithNoDecimals: ',0 $'
  1710. }
  1711. };
  1712. // CommonJS
  1713. if (typeof module !== 'undefined' && module.exports) {
  1714. module.exports = language;
  1715. }
  1716. // Browser
  1717. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1718. window.numbro.culture(language.cultureCode, language);
  1719. }
  1720. }.call(typeof window === 'undefined' ? this : window));
  1721. /*!
  1722. * numbro.js language configuration
  1723. * language: Norwegian Bokmål
  1724. * locale: Norway
  1725. * author : Benjamin Van Ryseghem
  1726. */
  1727. (function() {
  1728. 'use strict';
  1729. var language = {
  1730. langLocaleCode: 'nb-NO',
  1731. cultureCode: 'nb-NO',
  1732. delimiters: {
  1733. thousands: ' ',
  1734. decimal: ','
  1735. },
  1736. abbreviations: {
  1737. thousand: 't',
  1738. million: 'M',
  1739. billion: 'md',
  1740. trillion: 't'
  1741. },
  1742. currency: {
  1743. symbol: 'kr',
  1744. position: 'postfix'
  1745. },
  1746. defaults: {
  1747. currencyFormat: ',4 a'
  1748. },
  1749. formats: {
  1750. fourDigits: '4 a',
  1751. fullWithTwoDecimals: ',0.00 $',
  1752. fullWithTwoDecimalsNoCurrency: ',0.00',
  1753. fullWithNoDecimals: ',0 $'
  1754. }
  1755. };
  1756. // CommonJS
  1757. if (typeof module !== 'undefined' && module.exports) {
  1758. module.exports = language;
  1759. }
  1760. // Browser
  1761. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1762. window.numbro.culture(language.cultureCode, language);
  1763. }
  1764. }.call(typeof window === 'undefined' ? this : window));
  1765. /*!
  1766. * numbro.js language configuration
  1767. * language : Norwegian Bokmål (nb)
  1768. * author : Tim McIntosh (StayinFront NZ)
  1769. */
  1770. (function () {
  1771. 'use strict';
  1772. var language = {
  1773. langLocaleCode: 'nb',
  1774. cultureCode: 'nb',
  1775. delimiters: {
  1776. thousands: ' ',
  1777. decimal: ','
  1778. },
  1779. abbreviations: {
  1780. thousand: 't',
  1781. million: 'mil',
  1782. billion: 'mia',
  1783. trillion: 'b'
  1784. },
  1785. ordinal: function () {
  1786. return '.';
  1787. },
  1788. currency: {
  1789. symbol: 'kr'
  1790. }
  1791. };
  1792. // Node
  1793. if (typeof module !== 'undefined' && module.exports) {
  1794. module.exports = language;
  1795. }
  1796. // Browser
  1797. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1798. window.numbro.culture('nb', language);
  1799. }
  1800. }.call(typeof window === 'undefined' ? this : window));
  1801. /*!
  1802. * numbro.js language configuration
  1803. * language : Dutch
  1804. * locale: Belgium
  1805. * author : Dieter Luypaert : https://github.com/moeriki
  1806. */
  1807. (function () {
  1808. 'use strict';
  1809. var language = {
  1810. langLocaleCode: 'nl-BE',
  1811. cultureCode: 'nl-BE',
  1812. delimiters: {
  1813. thousands: ' ',
  1814. decimal : ','
  1815. },
  1816. abbreviations: {
  1817. thousand : 'k',
  1818. million : 'mln',
  1819. billion : 'mld',
  1820. trillion : 'bln'
  1821. },
  1822. ordinal : function (number) {
  1823. var remainder = number % 100;
  1824. return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
  1825. },
  1826. currency: {
  1827. symbol: '€',
  1828. position: 'postfix'
  1829. },
  1830. defaults: {
  1831. currencyFormat: ',4 a'
  1832. },
  1833. formats: {
  1834. fourDigits: '4 a',
  1835. fullWithTwoDecimals: ',0.00 $',
  1836. fullWithTwoDecimalsNoCurrency: ',0.00',
  1837. fullWithNoDecimals: ',0 $'
  1838. }
  1839. };
  1840. // CommonJS
  1841. if (typeof module !== 'undefined' && module.exports) {
  1842. module.exports = language;
  1843. }
  1844. // Browser
  1845. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1846. window.numbro.culture(language.cultureCode, language);
  1847. }
  1848. }.call(typeof window === 'undefined' ? this : window));
  1849. /*!
  1850. * numbro.js language configuration
  1851. * language : Dutch
  1852. * locale: Netherlands
  1853. * author : Dave Clayton : https://github.com/davedx
  1854. */
  1855. (function () {
  1856. 'use strict';
  1857. var language = {
  1858. langLocaleCode: 'nl-NL',
  1859. cultureCode: 'nl-NL',
  1860. delimiters: {
  1861. thousands: '.',
  1862. decimal : ','
  1863. },
  1864. abbreviations: {
  1865. thousand : 'k',
  1866. million : 'mln',
  1867. billion : 'mrd',
  1868. trillion : 'bln'
  1869. },
  1870. ordinal : function (number) {
  1871. var remainder = number % 100;
  1872. return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
  1873. },
  1874. currency: {
  1875. symbol: '€',
  1876. position: 'postfix'
  1877. },
  1878. defaults: {
  1879. currencyFormat: ',4 a'
  1880. },
  1881. formats: {
  1882. fourDigits: '4 a',
  1883. fullWithTwoDecimals: ',0.00 $',
  1884. fullWithTwoDecimalsNoCurrency: ',0.00',
  1885. fullWithNoDecimals: ',0 $'
  1886. }
  1887. };
  1888. // CommonJS
  1889. if (typeof module !== 'undefined' && module.exports) {
  1890. module.exports = language;
  1891. }
  1892. // Browser
  1893. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1894. window.numbro.culture(language.cultureCode, language);
  1895. }
  1896. }.call(typeof window === 'undefined' ? this : window));
  1897. /*!
  1898. * numbro.js language configuration
  1899. * language : Norwegian Nynorsk (nn)
  1900. * author : Tim McIntosh (StayinFront NZ)
  1901. */
  1902. (function () {
  1903. 'use strict';
  1904. var language = {
  1905. langLocaleCode: 'nn',
  1906. cultureCode: 'nn',
  1907. delimiters: {
  1908. thousands: ' ',
  1909. decimal: ','
  1910. },
  1911. abbreviations: {
  1912. thousand: 't',
  1913. million: 'mil',
  1914. billion: 'mia',
  1915. trillion: 'b'
  1916. },
  1917. ordinal: function () {
  1918. return '.';
  1919. },
  1920. currency: {
  1921. symbol: 'kr'
  1922. }
  1923. };
  1924. // Node
  1925. if (typeof module !== 'undefined' && module.exports) {
  1926. module.exports = language;
  1927. }
  1928. // Browser
  1929. if (typeof window !== 'undefined' && window.numbro && window.numbro.language) {
  1930. window.numbro.language('nn', language);
  1931. }
  1932. }());
  1933. /*!
  1934. * numbro.js language configuration
  1935. * language : Polish
  1936. * locale : Poland
  1937. * author : Dominik Bulaj : https://github.com/dominikbulaj
  1938. */
  1939. (function () {
  1940. 'use strict';
  1941. var language = {
  1942. langLocaleCode: 'pl-PL',
  1943. cultureCode: 'pl-PL',
  1944. delimiters: {
  1945. thousands: ' ',
  1946. decimal: ','
  1947. },
  1948. abbreviations: {
  1949. thousand: 'tys.',
  1950. million: 'mln',
  1951. billion: 'mld',
  1952. trillion: 'bln'
  1953. },
  1954. ordinal: function () {
  1955. return '.';
  1956. },
  1957. currency: {
  1958. symbol: ' zł',
  1959. position: 'postfix'
  1960. },
  1961. defaults: {
  1962. currencyFormat: ',4 a'
  1963. },
  1964. formats: {
  1965. fourDigits: '4 a',
  1966. fullWithTwoDecimals: ',0.00 $',
  1967. fullWithTwoDecimalsNoCurrency: ',0.00',
  1968. fullWithNoDecimals: ',0 $'
  1969. }
  1970. };
  1971. // CommonJS
  1972. if (typeof module !== 'undefined' && module.exports) {
  1973. module.exports = language;
  1974. }
  1975. // Browser
  1976. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  1977. window.numbro.culture(language.cultureCode, language);
  1978. }
  1979. }.call(typeof window === 'undefined' ? this : window));
  1980. /*!
  1981. * numbro.js language configuration
  1982. * language : Portuguese
  1983. * locale : Brazil
  1984. * author : Ramiro Varandas Jr : https://github.com/ramirovjr
  1985. */
  1986. (function () {
  1987. 'use strict';
  1988. var language = {
  1989. langLocaleCode: 'pt-BR',
  1990. cultureCode: 'pt-BR',
  1991. delimiters: {
  1992. thousands: '.',
  1993. decimal: ','
  1994. },
  1995. abbreviations: {
  1996. thousand: 'mil',
  1997. million: 'milhões',
  1998. billion: 'b',
  1999. trillion: 't'
  2000. },
  2001. ordinal: function () {
  2002. return 'º';
  2003. },
  2004. currency: {
  2005. symbol: 'R$',
  2006. position: 'prefix'
  2007. },
  2008. defaults: {
  2009. currencyFormat: ',4 a'
  2010. },
  2011. formats: {
  2012. fourDigits: '4 a',
  2013. fullWithTwoDecimals: ',0.00 $',
  2014. fullWithTwoDecimalsNoCurrency: ',0.00',
  2015. fullWithNoDecimals: ',0 $'
  2016. }
  2017. };
  2018. // CommonJS
  2019. if (typeof module !== 'undefined' && module.exports) {
  2020. module.exports = language;
  2021. }
  2022. // Browser
  2023. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2024. window.numbro.culture(language.cultureCode, language);
  2025. }
  2026. }.call(typeof window === 'undefined' ? this : window));
  2027. /*!
  2028. * numbro.js language configuration
  2029. * language : Portuguese
  2030. * locale : Portugal
  2031. * author : Diogo Resende : https://github.com/dresende
  2032. */
  2033. (function () {
  2034. 'use strict';
  2035. var language = {
  2036. langLocaleCode: 'pt-PT',
  2037. cultureCode: 'pt-PT',
  2038. delimiters: {
  2039. thousands: ' ',
  2040. decimal: ','
  2041. },
  2042. abbreviations: {
  2043. thousand: 'k',
  2044. million: 'm',
  2045. billion: 'b',
  2046. trillion: 't'
  2047. },
  2048. ordinal : function () {
  2049. return 'º';
  2050. },
  2051. currency: {
  2052. symbol: '€',
  2053. position: 'postfix'
  2054. },
  2055. defaults: {
  2056. currencyFormat: ',4 a'
  2057. },
  2058. formats: {
  2059. fourDigits: '4 a',
  2060. fullWithTwoDecimals: ',0.00 $',
  2061. fullWithTwoDecimalsNoCurrency: ',0.00',
  2062. fullWithNoDecimals: ',0 $'
  2063. }
  2064. };
  2065. // CommonJS
  2066. if (typeof module !== 'undefined' && module.exports) {
  2067. module.exports = language;
  2068. }
  2069. // Browser
  2070. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2071. window.numbro.culture(language.cultureCode, language);
  2072. }
  2073. }.call(typeof window === 'undefined' ? this : window));
  2074. /*!
  2075. * numeral.js language configuration
  2076. * language : Romanian
  2077. * author : Andrei Alecu https://github.com/andreialecu
  2078. */
  2079. (function () {
  2080. 'use strict';
  2081. var language = {
  2082. langLocaleCode: 'ro-RO',
  2083. cultureCode: 'ro-RO',
  2084. delimiters: {
  2085. thousands: '.',
  2086. decimal: ','
  2087. },
  2088. abbreviations: {
  2089. thousand: 'mii',
  2090. million: 'mil',
  2091. billion: 'mld',
  2092. trillion: 'bln'
  2093. },
  2094. ordinal: function () {
  2095. return '.';
  2096. },
  2097. currency: {
  2098. symbol: ' lei',
  2099. position: 'postfix'
  2100. },
  2101. defaults: {
  2102. currencyFormat: ',4 a'
  2103. },
  2104. formats: {
  2105. fourDigits: '4 a',
  2106. fullWithTwoDecimals: ',0.00 $',
  2107. fullWithTwoDecimalsNoCurrency: ',0.00',
  2108. fullWithNoDecimals: ',0 $'
  2109. }
  2110. };
  2111. // CommonJS
  2112. if (typeof module !== 'undefined' && module.exports) {
  2113. module.exports = language;
  2114. }
  2115. // Browser
  2116. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2117. window.numbro.culture(language.cultureCode, language);
  2118. }
  2119. }.call(typeof window === 'undefined' ? this : window));
  2120. /*!
  2121. * numbro.js language configuration
  2122. * language : Romanian (ro)
  2123. * author : Tim McIntosh (StayinFront NZ)
  2124. */
  2125. (function () {
  2126. 'use strict';
  2127. var language = {
  2128. langLocaleCode: 'ro',
  2129. cultureCode: 'ro',
  2130. delimiters: {
  2131. thousands: '.',
  2132. decimal: ','
  2133. },
  2134. abbreviations: {
  2135. thousand: 'mie',
  2136. million: 'mln',
  2137. billion: 'mld',
  2138. trillion: 't'
  2139. },
  2140. ordinal: function () {
  2141. return '.';
  2142. },
  2143. currency: {
  2144. symbol: 'RON'
  2145. }
  2146. };
  2147. // Node
  2148. if (typeof module !== 'undefined' && module.exports) {
  2149. module.exports = language;
  2150. }
  2151. // Browser
  2152. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2153. window.numbro.culture('ro', language);
  2154. }
  2155. }.call(typeof window === 'undefined' ? this : window));
  2156. /*!
  2157. * numbro.js language configuration
  2158. * language : Russian
  2159. * locale : Russsia
  2160. * author : Anatoli Papirovski : https://github.com/apapirovski
  2161. */
  2162. (function () {
  2163. 'use strict';
  2164. var language = {
  2165. langLocaleCode: 'ru-RU',
  2166. cultureCode: 'ru-RU',
  2167. delimiters: {
  2168. thousands: ' ',
  2169. decimal: ','
  2170. },
  2171. abbreviations: {
  2172. thousand: 'тыс.',
  2173. million: 'млн',
  2174. billion: 'b',
  2175. trillion: 't'
  2176. },
  2177. ordinal: function () {
  2178. // not ideal, but since in Russian it can taken on
  2179. // different forms (masculine, feminine, neuter)
  2180. // this is all we can do
  2181. return '.';
  2182. },
  2183. currency: {
  2184. symbol: 'руб.',
  2185. position: 'postfix'
  2186. },
  2187. defaults: {
  2188. currencyFormat: ',4 a'
  2189. },
  2190. formats: {
  2191. fourDigits: '4 a',
  2192. fullWithTwoDecimals: ',0.00 $',
  2193. fullWithTwoDecimalsNoCurrency: ',0.00',
  2194. fullWithNoDecimals: ',0 $'
  2195. }
  2196. };
  2197. // CommonJS
  2198. if (typeof module !== 'undefined' && module.exports) {
  2199. module.exports = language;
  2200. }
  2201. // Browser
  2202. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2203. window.numbro.culture(language.cultureCode, language);
  2204. }
  2205. }.call(typeof window === 'undefined' ? this : window));
  2206. /*!
  2207. * numbro.js language configuration
  2208. * language : Russian
  2209. * locale : Ukraine
  2210. * author : Anatoli Papirovski : https://github.com/apapirovski
  2211. */
  2212. (function () {
  2213. 'use strict';
  2214. var language = {
  2215. langLocaleCode: 'ru-UA',
  2216. cultureCode: 'ru-UA',
  2217. delimiters: {
  2218. thousands: ' ',
  2219. decimal: ','
  2220. },
  2221. abbreviations: {
  2222. thousand: 'тыс.',
  2223. million: 'млн',
  2224. billion: 'b',
  2225. trillion: 't'
  2226. },
  2227. ordinal: function () {
  2228. // not ideal, but since in Russian it can taken on
  2229. // different forms (masculine, feminine, neuter)
  2230. // this is all we can do
  2231. return '.';
  2232. },
  2233. currency: {
  2234. symbol: '\u20B4',
  2235. position: 'postfix'
  2236. },
  2237. defaults: {
  2238. currencyFormat: ',4 a'
  2239. },
  2240. formats: {
  2241. fourDigits: '4 a',
  2242. fullWithTwoDecimals: ',0.00 $',
  2243. fullWithTwoDecimalsNoCurrency: ',0.00',
  2244. fullWithNoDecimals: ',0 $'
  2245. }
  2246. };
  2247. // CommonJS
  2248. if (typeof module !== 'undefined' && module.exports) {
  2249. module.exports = language;
  2250. }
  2251. // Browser
  2252. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2253. window.numbro.culture(language.cultureCode, language);
  2254. }
  2255. }.call(typeof window === 'undefined' ? this : window));
  2256. /*!
  2257. * numbro.js language configuration
  2258. * language : Slovak
  2259. * locale : Slovakia
  2260. * author : Jan Pesa : https://github.com/smajl (based on work from Ahmed Al Hafoudh : http://www.freevision.sk)
  2261. */
  2262. (function () {
  2263. 'use strict';
  2264. var language = {
  2265. langLocaleCode: 'sk-SK',
  2266. cultureCode: 'sk-SK',
  2267. delimiters: {
  2268. thousands: '\u00a0',
  2269. decimal: ','
  2270. },
  2271. abbreviations: {
  2272. thousand: 'tis.',
  2273. million: 'mil.',
  2274. billion: 'mld.',
  2275. trillion: 'bil.'
  2276. },
  2277. ordinal: function () {
  2278. return '.';
  2279. },
  2280. currency: {
  2281. symbol: '€',
  2282. position: 'postfix',
  2283. spaceSeparated: true
  2284. },
  2285. defaults: {
  2286. currencyFormat: ',4 a'
  2287. },
  2288. formats: {
  2289. fourDigits: '4 a',
  2290. fullWithTwoDecimals: ',0.00 $',
  2291. fullWithTwoDecimalsNoCurrency: ',0.00',
  2292. fullWithNoDecimals: ',0 $'
  2293. }
  2294. };
  2295. // CommonJS
  2296. if (typeof module !== 'undefined' && module.exports) {
  2297. module.exports = language;
  2298. }
  2299. // Browser
  2300. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2301. window.numbro.culture(language.cultureCode, language);
  2302. }
  2303. }.call(typeof window === 'undefined' ? this : window));
  2304. /*!
  2305. * numbro.js language configuration
  2306. * language : Slovene
  2307. * locale: Slovenia
  2308. * author : Tim McIntosh (StayinFront NZ)
  2309. */
  2310. (function () {
  2311. 'use strict';
  2312. var language = {
  2313. langLocaleCode: 'sl',
  2314. cultureCode: 'sl',
  2315. delimiters: {
  2316. thousands: '.',
  2317. decimal: ','
  2318. },
  2319. abbreviations: {
  2320. thousand: 'tis.',
  2321. million: 'mil.',
  2322. billion: 'b',
  2323. trillion: 't'
  2324. },
  2325. ordinal: function () {
  2326. return '.';
  2327. },
  2328. currency: {
  2329. symbol: '€'
  2330. }
  2331. };
  2332. // Node
  2333. if (typeof module !== 'undefined' && module.exports) {
  2334. module.exports = language;
  2335. }
  2336. // Browser
  2337. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2338. window.numbro.culture('sl', language);
  2339. }
  2340. }());
  2341. /*!
  2342. * numbro.js language configuration
  2343. * language : Serbian (sr)
  2344. * country : Serbia (Cyrillic)
  2345. * author : Tim McIntosh (StayinFront NZ)
  2346. */
  2347. (function () {
  2348. 'use strict';
  2349. var language = {
  2350. langLocaleCode: 'sr-Cyrl-RS',
  2351. cultureCode: 'sr-Cyrl-RS',
  2352. delimiters: {
  2353. thousands: '.',
  2354. decimal: ','
  2355. },
  2356. abbreviations: {
  2357. thousand: 'тыс.',
  2358. million: 'млн',
  2359. billion: 'b',
  2360. trillion: 't'
  2361. },
  2362. ordinal: function () {
  2363. return '.';
  2364. },
  2365. currency: {
  2366. symbol: 'RSD'
  2367. }
  2368. };
  2369. // Node
  2370. if (typeof module !== 'undefined' && module.exports) {
  2371. module.exports = language;
  2372. }
  2373. // Browser
  2374. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2375. window.numbro.culture('sr-Cyrl-RS', language);
  2376. }
  2377. }());
  2378. /*!
  2379. * numbro.js language configuration
  2380. * language : Swedish
  2381. * locale : Sweden
  2382. * author : Benjamin Van Ryseghem (benjamin.vanryseghem.com)
  2383. */
  2384. (function() {
  2385. 'use strict';
  2386. var language = {
  2387. langLocaleCode: 'sv-SE',
  2388. cultureCode: 'sv-SE',
  2389. delimiters: {
  2390. thousands: ' ',
  2391. decimal: ','
  2392. },
  2393. abbreviations: {
  2394. thousand: 't',
  2395. million: 'M',
  2396. billion: 'md',
  2397. trillion: 'tmd'
  2398. },
  2399. currency: {
  2400. symbol: 'kr',
  2401. position: 'postfix'
  2402. },
  2403. defaults: {
  2404. currencyFormat: ',4 a'
  2405. },
  2406. formats: {
  2407. fourDigits: '4 a',
  2408. fullWithTwoDecimals: ',0.00 $',
  2409. fullWithTwoDecimalsNoCurrency: ',0.00',
  2410. fullWithNoDecimals: ',0 $'
  2411. }
  2412. };
  2413. // CommonJS
  2414. if (typeof module !== 'undefined' && module.exports) {
  2415. module.exports = language;
  2416. }
  2417. // Browser
  2418. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2419. window.numbro.culture(language.cultureCode, language);
  2420. }
  2421. }.call(typeof window === 'undefined' ? this : window));
  2422. /*!
  2423. * numbro.js language configuration
  2424. * language : Thai
  2425. * locale : Thailand
  2426. * author : Sathit Jittanupat : https://github.com/jojosati
  2427. */
  2428. (function () {
  2429. 'use strict';
  2430. var language = {
  2431. langLocaleCode: 'th-TH',
  2432. cultureCode: 'th-TH',
  2433. delimiters: {
  2434. thousands: ',',
  2435. decimal: '.'
  2436. },
  2437. abbreviations: {
  2438. thousand: 'พัน',
  2439. million: 'ล้าน',
  2440. billion: 'พันล้าน',
  2441. trillion: 'ล้านล้าน'
  2442. },
  2443. ordinal: function () {
  2444. return '.';
  2445. },
  2446. currency: {
  2447. symbol: '฿',
  2448. position: 'postfix'
  2449. },
  2450. defaults: {
  2451. currencyFormat: ',4 a'
  2452. },
  2453. formats: {
  2454. fourDigits: '4 a',
  2455. fullWithTwoDecimals: ',0.00 $',
  2456. fullWithTwoDecimalsNoCurrency: ',0.00',
  2457. fullWithNoDecimals: ',0 $'
  2458. }
  2459. };
  2460. // CommonJS
  2461. if (typeof module !== 'undefined' && module.exports) {
  2462. module.exports = language;
  2463. }
  2464. // Browser
  2465. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2466. window.numbro.culture(language.cultureCode, language);
  2467. }
  2468. }.call(typeof window === 'undefined' ? this : window));
  2469. /*!
  2470. * numbro.js language configuration
  2471. * language : Turkish
  2472. * locale : Turkey
  2473. * author : Ecmel Ercan : https://github.com/ecmel,
  2474. * Erhan Gundogan : https://github.com/erhangundogan,
  2475. * Burak Yiğit Kaya: https://github.com/BYK
  2476. */
  2477. (function() {
  2478. 'use strict';
  2479. var suffixes = {
  2480. 1: '\'inci',
  2481. 5: '\'inci',
  2482. 8: '\'inci',
  2483. 70: '\'inci',
  2484. 80: '\'inci',
  2485. 2: '\'nci',
  2486. 7: '\'nci',
  2487. 20: '\'nci',
  2488. 50: '\'nci',
  2489. 3: '\'üncü',
  2490. 4: '\'üncü',
  2491. 100: '\'üncü',
  2492. 6: '\'ncı',
  2493. 9: '\'uncu',
  2494. 10: '\'uncu',
  2495. 30: '\'uncu',
  2496. 60: '\'ıncı',
  2497. 90: '\'ıncı'
  2498. },
  2499. language = {
  2500. langLocaleCode: 'tr-TR',
  2501. cultureCode: 'tr-TR',
  2502. delimiters: {
  2503. thousands: '.',
  2504. decimal: ','
  2505. },
  2506. abbreviations: {
  2507. thousand: 'bin',
  2508. million: 'milyon',
  2509. billion: 'milyar',
  2510. trillion: 'trilyon'
  2511. },
  2512. ordinal: function(number) {
  2513. if (number === 0) { // special case for zero
  2514. return '\'ıncı';
  2515. }
  2516. var a = number % 10,
  2517. b = number % 100 - a,
  2518. c = number >= 100 ? 100 : null;
  2519. return suffixes[a] || suffixes[b] || suffixes[c];
  2520. },
  2521. currency: {
  2522. symbol: '\u20BA',
  2523. position: 'postfix'
  2524. },
  2525. defaults: {
  2526. currencyFormat: ',4 a'
  2527. },
  2528. formats: {
  2529. fourDigits: '4 a',
  2530. fullWithTwoDecimals: ',0.00 $',
  2531. fullWithTwoDecimalsNoCurrency: ',0.00',
  2532. fullWithNoDecimals: ',0 $'
  2533. }
  2534. };
  2535. // CommonJS
  2536. if (typeof module !== 'undefined' && module.exports) {
  2537. module.exports = language;
  2538. }
  2539. // Browser
  2540. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2541. window.numbro.culture(language.cultureCode, language);
  2542. }
  2543. }.call(typeof window === 'undefined' ? this : window));
  2544. /*!
  2545. * numbro.js language configuration
  2546. * language : Ukrainian
  2547. * locale : Ukraine
  2548. * author : Michael Piefel : https://github.com/piefel (with help from Tetyana Kuzmenko)
  2549. */
  2550. (function () {
  2551. 'use strict';
  2552. var language = {
  2553. langLocaleCode: 'uk-UA',
  2554. cultureCode: 'uk-UA',
  2555. delimiters: {
  2556. thousands: ' ',
  2557. decimal: ','
  2558. },
  2559. abbreviations: {
  2560. thousand: 'тис.',
  2561. million: 'млн',
  2562. billion: 'млрд',
  2563. trillion: 'блн'
  2564. },
  2565. ordinal: function () {
  2566. // not ideal, but since in Ukrainian it can taken on
  2567. // different forms (masculine, feminine, neuter)
  2568. // this is all we can do
  2569. return '';
  2570. },
  2571. currency: {
  2572. symbol: '\u20B4',
  2573. position: 'postfix'
  2574. },
  2575. defaults: {
  2576. currencyFormat: ',4 a'
  2577. },
  2578. formats: {
  2579. fourDigits: '4 a',
  2580. fullWithTwoDecimals: ',0.00 $',
  2581. fullWithTwoDecimalsNoCurrency: ',0.00',
  2582. fullWithNoDecimals: ',0 $'
  2583. }
  2584. };
  2585. // CommonJS
  2586. if (typeof module !== 'undefined' && module.exports) {
  2587. module.exports = language;
  2588. }
  2589. // Browser
  2590. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2591. window.numbro.culture(language.cultureCode, language);
  2592. }
  2593. }.call(typeof window === 'undefined' ? this : window));
  2594. /*!
  2595. * numbro.js language configuration
  2596. * language : simplified chinese
  2597. * locale : China
  2598. * author : badplum : https://github.com/badplum
  2599. */
  2600. (function () {
  2601. 'use strict';
  2602. var language = {
  2603. langLocaleCode: 'zh-CN',
  2604. cultureCode: 'zh-CN',
  2605. delimiters: {
  2606. thousands: ',',
  2607. decimal: '.'
  2608. },
  2609. abbreviations: {
  2610. thousand: '千',
  2611. million: '百万',
  2612. billion: '十亿',
  2613. trillion: '兆'
  2614. },
  2615. ordinal: function () {
  2616. return '.';
  2617. },
  2618. currency: {
  2619. symbol: '¥',
  2620. position: 'prefix'
  2621. },
  2622. defaults: {
  2623. currencyFormat: ',4 a'
  2624. },
  2625. formats: {
  2626. fourDigits: '4 a',
  2627. fullWithTwoDecimals: '$ ,0.00',
  2628. fullWithTwoDecimalsNoCurrency: ',0.00',
  2629. fullWithNoDecimals: '$ ,0'
  2630. }
  2631. };
  2632. // CommonJS
  2633. if (typeof module !== 'undefined' && module.exports) {
  2634. module.exports = language;
  2635. }
  2636. // Browser
  2637. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2638. window.numbro.culture(language.cultureCode, language);
  2639. }
  2640. }.call(typeof window === 'undefined' ? this : window));
  2641. /*!
  2642. * numbro.js language configuration
  2643. * language : Chinese traditional
  2644. * locale: Macau
  2645. * author : Tim McIntosh (StayinFront NZ)
  2646. */
  2647. (function () {
  2648. 'use strict';
  2649. var language = {
  2650. langLocaleCode: 'zh-MO',
  2651. cultureCode: 'zh-MO',
  2652. delimiters: {
  2653. thousands: ',',
  2654. decimal: '.'
  2655. },
  2656. abbreviations: {
  2657. thousand: '千',
  2658. million: '百萬',
  2659. billion: '十億',
  2660. trillion: '兆'
  2661. },
  2662. ordinal: function () {
  2663. return '.';
  2664. },
  2665. currency: {
  2666. symbol: 'MOP'
  2667. }
  2668. };
  2669. // Node
  2670. if (typeof module !== 'undefined' && module.exports) {
  2671. module.exports = language;
  2672. }
  2673. // Browser
  2674. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2675. window.numbro.culture('zh-MO', language);
  2676. }
  2677. }());
  2678. /*!
  2679. * numbro.js language configuration
  2680. * language : Chinese simplified
  2681. * locale: Singapore
  2682. * author : Tim McIntosh (StayinFront NZ)
  2683. */
  2684. (function () {
  2685. 'use strict';
  2686. var language = {
  2687. langLocaleCode: 'zh-SG',
  2688. cultureCode: 'zh-SG',
  2689. delimiters: {
  2690. thousands: ',',
  2691. decimal: '.'
  2692. },
  2693. abbreviations: {
  2694. thousand: '千',
  2695. million: '百万',
  2696. billion: '十亿',
  2697. trillion: '兆'
  2698. },
  2699. ordinal: function () {
  2700. return '.';
  2701. },
  2702. currency: {
  2703. symbol: '$'
  2704. }
  2705. };
  2706. // Node
  2707. if (typeof module !== 'undefined' && module.exports) {
  2708. module.exports = language;
  2709. }
  2710. // Browser
  2711. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2712. window.numbro.culture('zh-SG', language);
  2713. }
  2714. }.call(typeof window === 'undefined' ? this : window));
  2715. /*!
  2716. * numbro.js language configuration
  2717. * language : Chinese (Taiwan)
  2718. * author (numbro.js Version): Randy Wilander : https://github.com/rocketedaway
  2719. * author (numeral.js Version) : Rich Daley : https://github.com/pedantic-git
  2720. */
  2721. (function () {
  2722. 'use strict';
  2723. var language = {
  2724. langLocaleCode: 'zh-TW',
  2725. cultureCode: 'zh-TW',
  2726. delimiters: {
  2727. thousands: ',',
  2728. decimal: '.'
  2729. },
  2730. abbreviations: {
  2731. thousand: '千',
  2732. million: '百萬',
  2733. billion: '十億',
  2734. trillion: '兆'
  2735. },
  2736. ordinal: function () {
  2737. return '第';
  2738. },
  2739. currency: {
  2740. symbol: 'NT$'
  2741. }
  2742. };
  2743. // CommonJS
  2744. if (typeof module !== 'undefined' && module.exports) {
  2745. module.exports = language;
  2746. }
  2747. // Browser
  2748. if (typeof window !== 'undefined' && window.numbro && window.numbro.culture) {
  2749. window.numbro.culture(language.cultureCode, language);
  2750. }
  2751. }.call(typeof window === 'undefined' ? this : window));