Skip to content
Snippets Groups Projects
Commit 71b72df3 authored by JoanCervan's avatar JoanCervan
Browse files

Use of the generic Catalan language code ca and addition of numeral library

parent 6bd2306e
Branches master
No related tags found
No related merge requests found
Pipeline #19332 failed
File moved
File moved
//! numeral.js locale configuration
//! locale : catalan (ca)
//! author : arbocenc: https://personal.calbasi.net
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../numeral')) :
typeof define === 'function' && define.amd ? define(['numeral'], factory) :
factory(global.numeral)
}(this, function (numeral) { 'use strict';
numeral.language('ca', {
"delimiters": {
"thousands": ".",
"decimal": ","
},
"abbreviations": {
"thousand": "x10^3",
"million": "x10^6",
"billion": "x10^12",
"trillion": "x10^18"
},
"ordinal": function (number) {
return (number === 1) ? 'a' : 'a';
},
"currency": {
"symbol": ""
}
});
}));
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment