UNPKG

27.7 kBJavaScriptView Raw
1/*! @preserve
2 * numeral.js language configuration
3 * language : belgium-dutch (be-nl)
4 * author : Dieter Luypaert : https://github.com/moeriki
5 */
6(function () {
7 var language = {
8 delimiters: {
9 thousands: ' ',
10 decimal : ','
11 },
12 abbreviations: {
13 thousand : 'k',
14 million : ' mln',
15 billion : ' mld',
16 trillion : ' bln'
17 },
18 ordinal : function (number) {
19 var remainder = number % 100;
20 return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
21 },
22 currency: {
23 symbol: '€ '
24 }
25 };
26
27 // Node
28 if (typeof module !== 'undefined' && module.exports) {
29 module.exports = language;
30 }
31 // Browser
32 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
33 this.numeral.language('be-nl', language);
34 }
35}());
36/*! @preserve
37 * numeral.js language configuration
38 * language : simplified chinese
39 * author : badplum : https://github.com/badplum
40 */
41(function () {
42 var language = {
43 delimiters: {
44 thousands: ',',
45 decimal: '.'
46 },
47 abbreviations: {
48 thousand: '千',
49 million: '百万',
50 billion: '十亿',
51 trillion: '兆'
52 },
53 ordinal: function (number) {
54 return '.';
55 },
56 currency: {
57 symbol: '¥'
58 }
59 };
60
61 // Node
62 if (typeof module !== 'undefined' && module.exports) {
63 module.exports = language;
64 }
65 // Browser
66 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
67 this.numeral.language('chs', language);
68 }
69}());
70
71/*! @preserve
72 * numeral.js language configuration
73 * language : czech (cs)
74 * author : Anatoli Papirovski : https://github.com/apapirovski
75 */
76(function () {
77 var language = {
78 delimiters: {
79 thousands: ' ',
80 decimal: ','
81 },
82 abbreviations: {
83 thousand: 'tis.',
84 million: 'mil.',
85 billion: 'b',
86 trillion: 't'
87 },
88 ordinal: function () {
89 return '.';
90 },
91 currency: {
92 symbol: 'Kč'
93 }
94 };
95
96 // Node
97 if (typeof module !== 'undefined' && module.exports) {
98 module.exports = language;
99 }
100 // Browser
101 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
102 this.numeral.language('cs', language);
103 }
104}());
105
106/*! @preserve
107 * numeral.js language configuration
108 * language : danish denmark (dk)
109 * author : Michael Storgaard : https://github.com/mstorgaard
110 */
111(function () {
112 var language = {
113 delimiters: {
114 thousands: '.',
115 decimal: ','
116 },
117 abbreviations: {
118 thousand: 'k',
119 million: 'mio',
120 billion: 'mia',
121 trillion: 'b'
122 },
123 ordinal: function (number) {
124 return '.';
125 },
126 currency: {
127 symbol: 'DKK'
128 }
129 };
130
131 // Node
132 if (typeof module !== 'undefined' && module.exports) {
133 module.exports = language;
134 }
135 // Browser
136 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
137 this.numeral.language('da-dk', language);
138 }
139}());
140/*! @preserve
141 * numeral.js language configuration
142 * language : German in Switzerland (de-ch)
143 * author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
144 */
145(function () {
146 var language = {
147 delimiters: {
148 thousands: ' ',
149 decimal: ','
150 },
151 abbreviations: {
152 thousand: 'k',
153 million: 'm',
154 billion: 'b',
155 trillion: 't'
156 },
157 ordinal: function (number) {
158 return '.';
159 },
160 currency: {
161 symbol: 'CHF'
162 }
163 };
164
165 // Node
166 if (typeof module !== 'undefined' && module.exports) {
167 module.exports = language;
168 }
169 // Browser
170 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
171 this.numeral.language('de-ch', language);
172 }
173}());
174/*! @preserve
175 * numeral.js language configuration
176 * language : German (de) – generally useful in Germany, Austria, Luxembourg, Belgium
177 * author : Marco Krage : https://github.com/sinky
178 */
179(function () {
180 var language = {
181 delimiters: {
182 thousands: ' ',
183 decimal: ','
184 },
185 abbreviations: {
186 thousand: 'k',
187 million: 'm',
188 billion: 'b',
189 trillion: 't'
190 },
191 ordinal: function (number) {
192 return '.';
193 },
194 currency: {
195 symbol: '€'
196 }
197 };
198
199 // Node
200 if (typeof module !== 'undefined' && module.exports) {
201 module.exports = language;
202 }
203 // Browser
204 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
205 this.numeral.language('de', language);
206 }
207}());
208/*! @preserve
209 * numeral.js language configuration
210 * language : english united kingdom (uk)
211 * author : Dan Ristic : https://github.com/dristic
212 */
213(function () {
214 var language = {
215 delimiters: {
216 thousands: ',',
217 decimal: '.'
218 },
219 abbreviations: {
220 thousand: 'k',
221 million: 'm',
222 billion: 'b',
223 trillion: 't'
224 },
225 ordinal: function (number) {
226 var b = number % 10;
227 return (~~ (number % 100 / 10) === 1) ? 'th' :
228 (b === 1) ? 'st' :
229 (b === 2) ? 'nd' :
230 (b === 3) ? 'rd' : 'th';
231 },
232 currency: {
233 symbol: '£'
234 }
235 };
236
237 // Node
238 if (typeof module !== 'undefined' && module.exports) {
239 module.exports = language;
240 }
241 // Browser
242 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
243 this.numeral.language('en-gb', language);
244 }
245}());
246/*!
247 * numeral.js language configuration
248 * language : english south africa (uk)
249 * author : Etienne Boshoff : etienne@zailab.com
250 */
251(function () {
252 var language = {
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 }
273 };
274
275 // Node
276 if (typeof module !== 'undefined' && module.exports) {
277 module.exports = language;
278 }
279 // Browser
280 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
281 this.numeral.language('en-za', language);
282 }
283}());
284/*! @preserve
285 * numeral.js language configuration
286 * language : spanish Spain
287 * author : Hernan Garcia : https://github.com/hgarcia
288 */
289(function () {
290 var language = {
291 delimiters: {
292 thousands: '.',
293 decimal: ','
294 },
295 abbreviations: {
296 thousand: 'k',
297 million: 'mm',
298 billion: 'b',
299 trillion: 't'
300 },
301 ordinal: function (number) {
302 var b = number % 10;
303 return (b === 1 || b === 3) ? 'er' :
304 (b === 2) ? 'do' :
305 (b === 7 || b === 0) ? 'mo' :
306 (b === 8) ? 'vo' :
307 (b === 9) ? 'no' : 'to';
308 },
309 currency: {
310 symbol: '€'
311 }
312 };
313
314 // Node
315 if (typeof module !== 'undefined' && module.exports) {
316 module.exports = language;
317 }
318 // Browser
319 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
320 this.numeral.language('es-ES', language);
321 }
322}());
323
324/*! @preserve
325 * numeral.js language configuration
326 * language : spanish
327 * author : Hernan Garcia : https://github.com/hgarcia
328 */
329(function () {
330 var language = {
331 delimiters: {
332 thousands: '.',
333 decimal: ','
334 },
335 abbreviations: {
336 thousand: 'k',
337 million: 'mm',
338 billion: 'b',
339 trillion: 't'
340 },
341 ordinal: function (number) {
342 var b = number % 10;
343 return (b === 1 || b === 3) ? 'er' :
344 (b === 2) ? 'do' :
345 (b === 7 || b === 0) ? 'mo' :
346 (b === 8) ? 'vo' :
347 (b === 9) ? 'no' : 'to';
348 },
349 currency: {
350 symbol: '$'
351 }
352 };
353
354 // Node
355 if (typeof module !== 'undefined' && module.exports) {
356 module.exports = language;
357 }
358 // Browser
359 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
360 this.numeral.language('es', language);
361 }
362}());
363
364/*! @preserve
365 * numeral.js language configuration
366 * language : Estonian
367 * author : Illimar Tambek : https://github.com/ragulka
368 *
369 * Note: in Estonian, abbreviations are always separated
370 * from numbers with a space
371 */
372(function () {
373 var language = {
374 delimiters: {
375 thousands: ' ',
376 decimal: ','
377 },
378 abbreviations: {
379 thousand: ' tuh',
380 million: ' mln',
381 billion: ' mld',
382 trillion: ' trl'
383 },
384 ordinal: function (number) {
385 return '.';
386 },
387 currency: {
388 symbol: '€'
389 }
390 };
391
392 // Node
393 if (typeof module !== 'undefined' && module.exports) {
394 module.exports = language;
395 }
396 // Browser
397 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
398 this.numeral.language('et', language);
399 }
400}());
401
402/*! @preserve
403 * numeral.js language configuration
404 * language : Finnish
405 * author : Sami Saada : https://github.com/samitheberber
406 */
407(function () {
408 var language = {
409 delimiters: {
410 thousands: ' ',
411 decimal: ','
412 },
413 abbreviations: {
414 thousand: 'k',
415 million: 'M',
416 billion: 'G',
417 trillion: 'T'
418 },
419 ordinal: function (number) {
420 return '.';
421 },
422 currency: {
423 symbol: '€'
424 }
425 };
426
427 // Node
428 if (typeof module !== 'undefined' && module.exports) {
429 module.exports = language;
430 }
431 // Browser
432 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
433 this.numeral.language('fi', language);
434 }
435}());
436
437/*! @preserve
438 * numeral.js language configuration
439 * language : french (Canada) (fr-CA)
440 * author : Léo Renaud-Allaire : https://github.com/renaudleo
441 */
442(function () {
443 var language = {
444 delimiters: {
445 thousands: ' ',
446 decimal: ','
447 },
448 abbreviations: {
449 thousand: 'k',
450 million: 'M',
451 billion: 'G',
452 trillion: 'T'
453 },
454 ordinal : function (number) {
455 return number === 1 ? 'er' : 'e';
456 },
457 currency: {
458 symbol: '$'
459 }
460 };
461
462 // Node
463 if (typeof module !== 'undefined' && module.exports) {
464 module.exports = language;
465 }
466 // Browser
467 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
468 this.numeral.language('fr-CA', language);
469 }
470}());
471/*! @preserve
472 * numeral.js language configuration
473 * language : french (fr-ch)
474 * author : Adam Draper : https://github.com/adamwdraper
475 */
476(function () {
477 var language = {
478 delimiters: {
479 thousands: '\'',
480 decimal: '.'
481 },
482 abbreviations: {
483 thousand: 'k',
484 million: 'm',
485 billion: 'b',
486 trillion: 't'
487 },
488 ordinal : function (number) {
489 return number === 1 ? 'er' : 'e';
490 },
491 currency: {
492 symbol: 'CHF'
493 }
494 };
495
496 // Node
497 if (typeof module !== 'undefined' && module.exports) {
498 module.exports = language;
499 }
500 // Browser
501 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
502 this.numeral.language('fr-ch', language);
503 }
504}());
505
506/*! @preserve
507 * numeral.js language configuration
508 * language : french (fr)
509 * author : Adam Draper : https://github.com/adamwdraper
510 */
511(function () {
512 var language = {
513 delimiters: {
514 thousands: ' ',
515 decimal: ','
516 },
517 abbreviations: {
518 thousand: 'k',
519 million: 'm',
520 billion: 'b',
521 trillion: 't'
522 },
523 ordinal : function (number) {
524 return number === 1 ? 'er' : 'e';
525 },
526 currency: {
527 symbol: '€'
528 }
529 };
530
531 // Node
532 if (typeof module !== 'undefined' && module.exports) {
533 module.exports = language;
534 }
535 // Browser
536 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
537 this.numeral.language('fr', language);
538 }
539}());
540/*! @preserve
541 * numeral.js language configuration
542 * language : Hungarian (hu)
543 * author : Peter Bakondy : https://github.com/pbakondy
544 */
545(function () {
546 var language = {
547 delimiters: {
548 thousands: ' ',
549 decimal: ','
550 },
551 abbreviations: {
552 thousand: 'E', // ezer
553 million: 'M', // millió
554 billion: 'Mrd', // milliárd
555 trillion: 'T' // trillió
556 },
557 ordinal: function (number) {
558 return '.';
559 },
560 currency: {
561 symbol: ' Ft'
562 }
563 };
564
565 // Node
566 if (typeof module !== 'undefined' && module.exports) {
567 module.exports = language;
568 }
569 // Browser
570 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
571 this.numeral.language('hu', language);
572 }
573}());
574/*! @preserve
575 * numeral.js language configuration
576 * language : italian Italy (it)
577 * author : Giacomo Trombi : http://cinquepunti.it
578 */
579(function () {
580 var language = {
581 delimiters: {
582 thousands: '.',
583 decimal: ','
584 },
585 abbreviations: {
586 thousand: 'mila',
587 million: 'mil',
588 billion: 'b',
589 trillion: 't'
590 },
591 ordinal: function (number) {
592 return 'º';
593 },
594 currency: {
595 symbol: '€'
596 }
597 };
598
599 // Node
600 if (typeof module !== 'undefined' && module.exports) {
601 module.exports = language;
602 }
603 // Browser
604 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
605 this.numeral.language('it', language);
606 }
607}());
608/*! @preserve
609 * numeral.js language configuration
610 * language : japanese
611 * author : teppeis : https://github.com/teppeis
612 */
613(function () {
614 var language = {
615 delimiters: {
616 thousands: ',',
617 decimal: '.'
618 },
619 abbreviations: {
620 thousand: '千',
621 million: '百万',
622 billion: '十億',
623 trillion: '兆'
624 },
625 ordinal: function (number) {
626 return '.';
627 },
628 currency: {
629 symbol: '¥'
630 }
631 };
632
633 // Node
634 if (typeof module !== 'undefined' && module.exports) {
635 module.exports = language;
636 }
637 // Browser
638 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
639 this.numeral.language('ja', language);
640 }
641}());
642
643/*! @preserve
644 * numeral.js language configuration
645 * language : Latvian (lv)
646 * author : Lauris Bukšis-Haberkorns : https://github.com/Lafriks
647 */
648(function () {
649 var language = {
650 delimiters: {
651 thousands: ' ',
652 decimal: ','
653 },
654 abbreviations: {
655 thousand: ' tūkst.',
656 million: ' milj.',
657 billion: ' mljrd.',
658 trillion: ' trilj.'
659 },
660 ordinal: function (number) {
661 return '.';
662 },
663 currency: {
664 symbol: '€'
665 }
666 };
667 // Node
668 if (typeof module !== 'undefined' && module.exports) {
669 module.exports = language;
670 }
671 // Browser
672 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
673 this.numeral.language('lv', language);
674 }
675}());
676
677/*! @preserve
678 * numeral.js language configuration
679 * language : netherlands-dutch (nl-nl)
680 * author : Dave Clayton : https://github.com/davedx
681 */
682(function () {
683 var language = {
684 delimiters: {
685 thousands: '.',
686 decimal : ','
687 },
688 abbreviations: {
689 thousand : 'k',
690 million : 'mln',
691 billion : 'mrd',
692 trillion : 'bln'
693 },
694 ordinal : function (number) {
695 var remainder = number % 100;
696 return (number !== 0 && remainder <= 1 || remainder === 8 || remainder >= 20) ? 'ste' : 'de';
697 },
698 currency: {
699 symbol: '€ '
700 }
701 };
702
703 // Node
704 if (typeof module !== 'undefined' && module.exports) {
705 module.exports = language;
706 }
707 // Browser
708 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
709 this.numeral.language('nl-nl', language);
710 }
711}());
712/*!
713 * numeral.js language configuration
714 * language : norwegian (bokmål)
715 * author : Ove Andersen : https://github.com/azzlack
716 */
717(function () {
718 var language = {
719 delimiters: {
720 thousands: ' ',
721 decimal: ','
722 },
723 abbreviations: {
724 thousand: 'k',
725 million: 'm',
726 billion: 'b',
727 trillion: 't'
728 },
729 ordinal: function (number) {
730 return '.';
731 },
732 currency: {
733 symbol: 'kr'
734 }
735 };
736
737 // Node
738 if (typeof module !== 'undefined' && module.exports) {
739 module.exports = language;
740 }
741 // Browser
742 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
743 this.numeral.language('nb-no', language);
744 this.numeral.language('nn-no', language);
745 this.numeral.language('no', language);
746 this.numeral.language('nb', language);
747 this.numeral.language('nn', language);
748 }
749}());
750/*! @preserve
751 * numeral.js language configuration
752 * language : polish (pl)
753 * author : Dominik Bulaj : https://github.com/dominikbulaj
754 */
755(function () {
756 var language = {
757 delimiters: {
758 thousands: ' ',
759 decimal: ','
760 },
761 abbreviations: {
762 thousand: 'tys.',
763 million: 'mln',
764 billion: 'mld',
765 trillion: 'bln'
766 },
767 ordinal: function (number) {
768 return '.';
769 },
770 currency: {
771 symbol: 'PLN'
772 }
773 };
774
775 // Node
776 if (typeof module !== 'undefined' && module.exports) {
777 module.exports = language;
778 }
779 // Browser
780 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
781 this.numeral.language('pl', language);
782 }
783}());
784/*! @preserve
785 * numeral.js language configuration
786 * language : portuguese brazil (pt-br)
787 * author : Ramiro Varandas Jr : https://github.com/ramirovjr
788 */
789(function () {
790 var language = {
791 delimiters: {
792 thousands: '.',
793 decimal: ','
794 },
795 abbreviations: {
796 thousand: 'mil',
797 million: 'milhões',
798 billion: 'b',
799 trillion: 't'
800 },
801 ordinal: function (number) {
802 return 'º';
803 },
804 currency: {
805 symbol: 'R$'
806 }
807 };
808
809 // Node
810 if (typeof module !== 'undefined' && module.exports) {
811 module.exports = language;
812 }
813 // Browser
814 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
815 this.numeral.language('pt-br', language);
816 }
817}());
818/*! @preserve
819 * numeral.js language configuration
820 * language : portuguese (pt-pt)
821 * author : Diogo Resende : https://github.com/dresende
822 */
823(function () {
824 var language = {
825 delimiters: {
826 thousands: ' ',
827 decimal: ','
828 },
829 abbreviations: {
830 thousand: 'k',
831 million: 'm',
832 billion: 'b',
833 trillion: 't'
834 },
835 ordinal : function (number) {
836 return 'º';
837 },
838 currency: {
839 symbol: '€'
840 }
841 };
842
843 // Node
844 if (typeof module !== 'undefined' && module.exports) {
845 module.exports = language;
846 }
847 // Browser
848 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
849 this.numeral.language('pt-pt', language);
850 }
851}());
852
853// numeral.js language configuration
854// language : Russian for the Ukraine (ru-UA)
855// author : Anatoli Papirovski : https://github.com/apapirovski
856(function () {
857 var language = {
858 delimiters: {
859 thousands: ' ',
860 decimal: ','
861 },
862 abbreviations: {
863 thousand: 'тыс.',
864 million: 'млн',
865 billion: 'b',
866 trillion: 't'
867 },
868 ordinal: function () {
869 // not ideal, but since in Russian it can taken on
870 // different forms (masculine, feminine, neuter)
871 // this is all we can do
872 return '.';
873 },
874 currency: {
875 symbol: '\u20B4'
876 }
877 };
878
879 // Node
880 if (typeof module !== 'undefined' && module.exports) {
881 module.exports = language;
882 }
883 // Browser
884 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
885 this.numeral.language('ru-UA', language);
886 }
887}());
888
889/*! @preserve
890 * numeral.js language configuration
891 * language : russian (ru)
892 * author : Anatoli Papirovski : https://github.com/apapirovski
893 */
894(function () {
895 var language = {
896 delimiters: {
897 thousands: ' ',
898 decimal: ','
899 },
900 abbreviations: {
901 thousand: 'тыс.',
902 million: 'млн.',
903 billion: 'млрд.',
904 trillion: 'трлн.'
905 },
906 ordinal: function () {
907 // not ideal, but since in Russian it can taken on
908 // different forms (masculine, feminine, neuter)
909 // this is all we can do
910 return '.';
911 },
912 currency: {
913 symbol: 'руб.'
914 }
915 };
916
917 // Node
918 if (typeof module !== 'undefined' && module.exports) {
919 module.exports = language;
920 }
921 // Browser
922 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
923 this.numeral.language('ru', language);
924 }
925}());
926
927/*! @preserve
928 * numeral.js language configuration
929 * language : slovak (sk)
930 * author : Ahmed Al Hafoudh : http://www.freevision.sk
931 */
932(function () {
933 var language = {
934 delimiters: {
935 thousands: ' ',
936 decimal: ','
937 },
938 abbreviations: {
939 thousand: 'tis.',
940 million: 'mil.',
941 billion: 'b',
942 trillion: 't'
943 },
944 ordinal: function () {
945 return '.';
946 },
947 currency: {
948 symbol: '€'
949 }
950 };
951
952 // Node
953 if (typeof module !== 'undefined' && module.exports) {
954 module.exports = language;
955 }
956 // Browser
957 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
958 this.numeral.language('sk', language);
959 }
960}());
961
962/*! @preserve
963 * numeral.js language configuration
964 * language : thai (th)
965 * author : Sathit Jittanupat : https://github.com/jojosati
966 */
967(function () {
968 var language = {
969 delimiters: {
970 thousands: ',',
971 decimal: '.'
972 },
973 abbreviations: {
974 thousand: 'พัน',
975 million: 'ล้าน',
976 billion: 'พันล้าน',
977 trillion: 'ล้านล้าน'
978 },
979 ordinal: function (number) {
980 return '.';
981 },
982 currency: {
983 symbol: '฿'
984 }
985 };
986
987 // Node
988 if (typeof module !== 'undefined' && module.exports) {
989 module.exports = language;
990 }
991 // Browser
992 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
993 this.numeral.language('th', language);
994 }
995}());
996
997/*! @preserve
998 * numeral.js language configuration
999 * language : turkish (tr)
1000 * author : Ecmel Ercan : https://github.com/ecmel, Erhan Gundogan : https://github.com/erhangundogan, Burak Yiğit Kaya: https://github.com/BYK
1001 */
1002(function () {
1003 var suffixes = {
1004 1: '\'inci',
1005 5: '\'inci',
1006 8: '\'inci',
1007 70: '\'inci',
1008 80: '\'inci',
1009
1010 2: '\'nci',
1011 7: '\'nci',
1012 20: '\'nci',
1013 50: '\'nci',
1014
1015 3: '\'üncü',
1016 4: '\'üncü',
1017 100: '\'üncü',
1018
1019 6: '\'ncı',
1020
1021 9: '\'uncu',
1022 10: '\'uncu',
1023 30: '\'uncu',
1024
1025 60: '\'ıncı',
1026 90: '\'ıncı'
1027 },
1028 language = {
1029 delimiters: {
1030 thousands: '.',
1031 decimal: ','
1032 },
1033 abbreviations: {
1034 thousand: 'bin',
1035 million: 'milyon',
1036 billion: 'milyar',
1037 trillion: 'trilyon'
1038 },
1039 ordinal: function (number) {
1040 if (number === 0) { // special case for zero
1041 return '\'ıncı';
1042 }
1043
1044 var a = number % 10,
1045 b = number % 100 - a,
1046 c = number >= 100 ? 100 : null;
1047
1048 return suffixes[a] || suffixes[b] || suffixes[c];
1049 },
1050 currency: {
1051 symbol: '\u20BA'
1052 }
1053 };
1054
1055 // Node
1056 if (typeof module !== 'undefined' && module.exports) {
1057 module.exports = language;
1058 }
1059 // Browser
1060 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
1061 this.numeral.language('tr', language);
1062 }
1063}());
1064
1065// numeral.js language configuration
1066// language : Ukrainian for the Ukraine (uk-UA)
1067// author : Michael Piefel : https://github.com/piefel (with help from Tetyana Kuzmenko)
1068(function () {
1069 var language = {
1070 delimiters: {
1071 thousands: ' ',
1072 decimal: ','
1073 },
1074 abbreviations: {
1075 thousand: 'тис.',
1076 million: 'млн',
1077 billion: 'млрд',
1078 trillion: 'блн'
1079 },
1080 ordinal: function () {
1081 // not ideal, but since in Ukrainian it can taken on
1082 // different forms (masculine, feminine, neuter)
1083 // this is all we can do
1084 return '';
1085 },
1086 currency: {
1087 symbol: '\u20B4'
1088 }
1089 };
1090
1091 // Node
1092 if (typeof module !== 'undefined' && module.exports) {
1093 module.exports = language;
1094 }
1095 // Browser
1096 if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
1097 this.numeral.language('uk-UA', language);
1098 }
1099}());