added numeral js package for Matrix's zend patient validation module
[openemr.git] / public / assets / numeral-1-5-3 / languages / th.js
blobca73c7d7ea0d88c4165adf4a4bcaf9760f33ff5c
1 /*! 
2  * numeral.js language configuration
3  * language : thai (th)
4  * author : Sathit Jittanupat : https://github.com/jojosati
5  */
6 (function () {
7     var language = {
8         delimiters: {
9             thousands: ',',
10             decimal: '.'
11         },
12         abbreviations: {
13             thousand: 'พัน',
14             million: 'ล้าน',
15             billion: 'พันล้าน',
16             trillion: 'ล้านล้าน'
17         },
18         ordinal: function (number) {
19             return '.';
20         },
21         currency: {
22             symbol: '฿'
23         }
24     };
26     // Node
27     if (typeof module !== 'undefined' && module.exports) {
28         module.exports = language;
29     }
30     // Browser
31     if (typeof window !== 'undefined' && this.numeral && this.numeral.language) {
32         this.numeral.language('th', language);
33     }
34 }());