Skip to content
Snippets Groups Projects
Commit 299ec251 authored by Benoit Lavenier's avatar Benoit Lavenier Committed by GitHub
Browse files

Merge pull request #256 from RavanH/patch-2

Create numeral.nl.js
parents 4d9c5e49 b3b34e9e
No related branches found
No related tags found
No related merge requests found
//! moment.js locale configuration
//! locale : dutch (nl)
//! author : RA van Hagen : https://github.com/RavanH
(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('nl', {
"delimiters": {
"thousands": " ",
"decimal": ","
},
"abbreviations": {
"thousand": "<small>x10<sup>3</sup></small>",
"million": "<small>x10<sup>6</sup></small>",
"billion": "<small>x10<sup>9</sup></small>",
"trillion": "<small>x10<sup>12</sup></small>"
},
"ordinal": "<sup>e</sup>",
"currency": {
"symbol": "X"
}
});
}));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment