diff options
| author | Vancho Stojkov <[email protected]> | 2021-05-17 11:40:56 +0200 |
|---|---|---|
| committer | Vancho Stojkov <[email protected]> | 2021-05-17 11:40:56 +0200 |
| commit | 5555cd6aecac55da5a1cf3b986a14ba9b2a15c18 (patch) | |
| tree | 6279f9faf1664d6e0dda15b6cca114b14f44b7bb | |
| parent | 2d6fc412d036f58624815689a8f8d5772479c0ad (diff) | |
| download | faker-5555cd6aecac55da5a1cf3b986a14ba9b2a15c18.tar.xz faker-5555cd6aecac55da5a1cf3b986a14ba9b2a15c18.zip | |
Add mk company
| -rw-r--r-- | lib/locales/mk/company/index.js | 4 | ||||
| -rw-r--r-- | lib/locales/mk/company/name.js | 5 | ||||
| -rw-r--r-- | lib/locales/mk/company/suffix.js | 6 | ||||
| -rw-r--r-- | lib/locales/mk/index.js | 1 |
4 files changed, 16 insertions, 0 deletions
diff --git a/lib/locales/mk/company/index.js b/lib/locales/mk/company/index.js new file mode 100644 index 00000000..2abcbf5c --- /dev/null +++ b/lib/locales/mk/company/index.js @@ -0,0 +1,4 @@ +var company = {}; +module['exports'] = company; +company.suffix = require("./suffix"); +company.name = require("./name"); diff --git a/lib/locales/mk/company/name.js b/lib/locales/mk/company/name.js new file mode 100644 index 00000000..87408a80 --- /dev/null +++ b/lib/locales/mk/company/name.js @@ -0,0 +1,5 @@ +module["exports"] = [ + "#{Name.last_name} #{suffix}", + "#{Address.city_name} #{suffix}", + "#{Name.last_name}, #{Name.last_name} и #{Name.last_name}" +]; diff --git a/lib/locales/mk/company/suffix.js b/lib/locales/mk/company/suffix.js new file mode 100644 index 00000000..bbb53d11 --- /dev/null +++ b/lib/locales/mk/company/suffix.js @@ -0,0 +1,6 @@ +module["exports"] = [ + "ДОО", + "ДООЕЛ", + "АД", + "ТП" +]; diff --git a/lib/locales/mk/index.js b/lib/locales/mk/index.js index 81045fe8..9a8306be 100644 --- a/lib/locales/mk/index.js +++ b/lib/locales/mk/index.js @@ -8,3 +8,4 @@ mk.phone_number = require("./phone_number"); mk.name = require("./name"); mk.date = require("./date"); mk.internet = require("./internet"); +mk.company = require("./company"); |
