UNPKG

839 BJavaScriptView Raw
1/*! @preserve
2 * numeral.js language configuration
3 * language : Latvian (lv)
4 * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks
5 */
6(function () {
7 var language = {
8 delimiters: {
9 thousands: ' ',
10 decimal: ','
11 },
12 abbreviations: {
13 thousand: ' tūkst.',
14 million: ' milj.',
15 billion: ' mljrd.',
16 trillion: ' trilj.'
17 },
18 ordinal: function (number) {
19 return '.';
20 },
21 currency: {
22 symbol: '€'
23 }
24 };
25 // Node
26 if (typeof module !== 'undefined' && module.exports) {
27 module.exports = language;
28 }
29 // Browser
30 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
31 this.numeral.language('lv', language);
32 }
33}());