| 123456789101112131415161718192021222324252627282930313233 |
- // numeral.js locale configuration
- // locale : Estonian
- // author : Illimar Tambek : https://github.com/ragulka
- // Note: in Estonian, abbreviations are always separated from numbers with a space
- (function (global, factory) {
- if (typeof define === 'function' && define.amd) {
- define(['../numeral'], factory);
- } else if (typeof module === 'object' && module.exports) {
- factory(require('../numeral'));
- } else {
- factory(global.numeral);
- }
- }(this, function (numeral) {
- numeral.register('locale', 'et', {
- delimiters: {
- thousands: ' ',
- decimal: ','
- },
- abbreviations: {
- thousand: ' tuh',
- million: ' mln',
- billion: ' mld',
- trillion: ' trl'
- },
- ordinal: function (number) {
- return '.';
- },
- currency: {
- symbol: '€'
- }
- });
- }));
|