diff options
| author | Lucas Jellema <[email protected]> | 2020-09-17 19:21:21 +0200 |
|---|---|---|
| committer | Lucas Jellema <[email protected]> | 2020-09-17 19:21:21 +0200 |
| commit | 24e253b9c52c40a1a967fed2d5c0ecc3cb4c3e96 (patch) | |
| tree | 790dd0e41a4650f99f931325b5931a26cf15ed70 /lib | |
| parent | 91dc8a3372426bc691be56153b33e81a16459f49 (diff) | |
| download | faker-24e253b9c52c40a1a967fed2d5c0ecc3cb4c3e96.tar.xz faker-24e253b9c52c40a1a967fed2d5c0ecc3cb4c3e96.zip | |
Adding Commerce to NL Locale; adding colors, depts
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/nl/commerce/color.js | 38 | ||||
| -rw-r--r-- | lib/locales/nl/commerce/department.js | 24 | ||||
| -rw-r--r-- | lib/locales/nl/commerce/index.js | 4 | ||||
| -rw-r--r-- | lib/locales/nl/index.js | 1 |
4 files changed, 67 insertions, 0 deletions
diff --git a/lib/locales/nl/commerce/color.js b/lib/locales/nl/commerce/color.js new file mode 100644 index 00000000..58eda850 --- /dev/null +++ b/lib/locales/nl/commerce/color.js @@ -0,0 +1,38 @@ +module["exports"] = [ + "rood", + "groen", + "blauw", + "koningblauw", + "geel", + "purper", + "muntgroen", + "groenblauw", + "wit", + "zwart", + "oranje", + "roze", + "grijs", + "donkergrijs", + "oker", + "terracotta", + "kastanjebruin", + "paars", + "turkoois", + "bruin", + "hemelsblauw", + "zalmroze", + "oudroze", + "appelgroen", + "levend wit", + "olijfgroen", + "magenta", + "limoen", + "ivoor", + "indigo", + "goud", + "fuchsia", + "cyaan", + "azuurblauw", + "lavendel", + "zilver" +]; diff --git a/lib/locales/nl/commerce/department.js b/lib/locales/nl/commerce/department.js new file mode 100644 index 00000000..759a66c7 --- /dev/null +++ b/lib/locales/nl/commerce/department.js @@ -0,0 +1,24 @@ +module["exports"] = [ + "Boeken", + "Films", + "Muziek", + "Spelletjes", + "Elektronica", + "Computers", + "Huis", + "Tuin", + "Gereedschap", + "Kruiden", + "Gezondheid", + "Beauty", + "Speelgoed", + "Kinderen", + "Baby", + "Kleding", + "Schoenen", + "Sieraden", + "Sport", + "Verzorging", + "Auto", + "Industrieel" +]; diff --git a/lib/locales/nl/commerce/index.js b/lib/locales/nl/commerce/index.js new file mode 100644 index 00000000..b80fdc0e --- /dev/null +++ b/lib/locales/nl/commerce/index.js @@ -0,0 +1,4 @@ +var commerce = {}; +module['exports'] = commerce; +commerce.color = require("./color"); +commerce.department = require("./department"); diff --git a/lib/locales/nl/index.js b/lib/locales/nl/index.js index 7e36c575..706d2ee3 100644 --- a/lib/locales/nl/index.js +++ b/lib/locales/nl/index.js @@ -2,6 +2,7 @@ var nl = {}; module['exports'] = nl; nl.title = "Dutch"; nl.address = require("./address"); +nl.commerce = require("./commerce"); nl.company = require("./company"); nl.internet = require("./internet"); nl.lorem = require("./lorem"); |
