aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/locales/mk/cell_phone/formats.js4
-rw-r--r--lib/locales/mk/cell_phone/index.js3
-rw-r--r--lib/locales/mk/index.js1
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/locales/mk/cell_phone/formats.js b/lib/locales/mk/cell_phone/formats.js
new file mode 100644
index 00000000..1fbeefa6
--- /dev/null
+++ b/lib/locales/mk/cell_phone/formats.js
@@ -0,0 +1,4 @@
+module["exports"] = [
+ "07# ### ####",
+ "+389 7# ### ####"
+];
diff --git a/lib/locales/mk/cell_phone/index.js b/lib/locales/mk/cell_phone/index.js
new file mode 100644
index 00000000..8de997ba
--- /dev/null
+++ b/lib/locales/mk/cell_phone/index.js
@@ -0,0 +1,3 @@
+var cell_phone = {};
+module['exports'] = cell_phone;
+cell_phone.formats = require("./formats");
diff --git a/lib/locales/mk/index.js b/lib/locales/mk/index.js
index 44ec98a8..111b3ab4 100644
--- a/lib/locales/mk/index.js
+++ b/lib/locales/mk/index.js
@@ -3,3 +3,4 @@ module['exports'] = mk;
mk.title = "Macedonian";
mk.separator = " и ";
mk.address = require("./address");
+mk.cell_phone = require("./cell_phone");