diff --git a/www/js/vendor/numeral.nl.js b/www/js/vendor/numeral.nl.js
new file mode 100644
index 0000000000000000000000000000000000000000..c1216ed61f02d00db4f04801fb8c36b31351d6ad
--- /dev/null
+++ b/www/js/vendor/numeral.nl.js
@@ -0,0 +1,27 @@
+//! 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"
+    }
+  });
+}));