33 lines
912 B
JavaScript
33 lines
912 B
JavaScript
// numeral.js locale configuration
|
|
// locale : German in Switzerland (de-ch)
|
|
// author : Michael Piefel : https://github.com/piefel (based on work from Marco Krage : https://github.com/sinky)
|
|
|
|
(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', 'de-ch', {
|
|
delimiters: {
|
|
thousands: ' ',
|
|
decimal: ','
|
|
},
|
|
abbreviations: {
|
|
thousand: 'k',
|
|
million: 'm',
|
|
billion: 'b',
|
|
trillion: 't'
|
|
},
|
|
ordinal: function (number) {
|
|
return '.';
|
|
},
|
|
currency: {
|
|
symbol: 'CHF'
|
|
}
|
|
});
|
|
}));
|