33 lines
863 B
JavaScript
33 lines
863 B
JavaScript
// numeral.js locale configuration
|
|
// locale : french (fr-ch)
|
|
// author : Adam Draper : https://github.com/adamwdraper
|
|
|
|
(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', 'fr-ch', {
|
|
delimiters: {
|
|
thousands: '\'',
|
|
decimal: '.'
|
|
},
|
|
abbreviations: {
|
|
thousand: 'k',
|
|
million: 'm',
|
|
billion: 'b',
|
|
trillion: 't'
|
|
},
|
|
ordinal : function (number) {
|
|
return number === 1 ? 'er' : 'e';
|
|
},
|
|
currency: {
|
|
symbol: 'CHF'
|
|
}
|
|
});
|
|
}));
|