aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVancho Stojkov <[email protected]>2021-05-15 18:26:19 +0200
committerVancho Stojkov <[email protected]>2021-05-15 18:26:19 +0200
commitfcdf75d4d85dfc68240348fe778a9985a8aa0487 (patch)
treedb34e75d97205433939046f6647d036986de8efb
parentf009b855af952390d42df91caeeb262c13ffd087 (diff)
downloadfaker-fcdf75d4d85dfc68240348fe778a9985a8aa0487.tar.xz
faker-fcdf75d4d85dfc68240348fe778a9985a8aa0487.zip
Add mk phone number
-rw-r--r--lib/locales/mk/index.js1
-rw-r--r--lib/locales/mk/phone_number/formats.js11
-rw-r--r--lib/locales/mk/phone_number/index.js3
3 files changed, 15 insertions, 0 deletions
diff --git a/lib/locales/mk/index.js b/lib/locales/mk/index.js
index 111b3ab4..de87274c 100644
--- a/lib/locales/mk/index.js
+++ b/lib/locales/mk/index.js
@@ -4,3 +4,4 @@ mk.title = "Macedonian";
mk.separator = " и ";
mk.address = require("./address");
mk.cell_phone = require("./cell_phone");
+mk.phone_number = require("./phone_number");
diff --git a/lib/locales/mk/phone_number/formats.js b/lib/locales/mk/phone_number/formats.js
new file mode 100644
index 00000000..b8227c8f
--- /dev/null
+++ b/lib/locales/mk/phone_number/formats.js
@@ -0,0 +1,11 @@
+module["exports"] = [
+ "02 ### ####",
+ "03# ### ###",
+ "04# ### ###",
+ "+389 2 ### ####",
+ "+389 3# ### ###",
+ "+389 4# ### ###",
+ "00389 2 ### ####",
+ "00389 3# ### ###",
+ "00389 4# ### ###"
+];
diff --git a/lib/locales/mk/phone_number/index.js b/lib/locales/mk/phone_number/index.js
new file mode 100644
index 00000000..8d35e011
--- /dev/null
+++ b/lib/locales/mk/phone_number/index.js
@@ -0,0 +1,3 @@
+var phone_number = {};
+module['exports'] = phone_number;
+phone_number.formats = require("./formats");