From f009b855af952390d42df91caeeb262c13ffd087 Mon Sep 17 00:00:00 2001 From: Vancho Stojkov Date: Sat, 15 May 2021 18:13:20 +0200 Subject: Add mk cell phone --- lib/locales/mk/cell_phone/formats.js | 4 ++++ lib/locales/mk/cell_phone/index.js | 3 +++ lib/locales/mk/index.js | 1 + 3 files changed, 8 insertions(+) create mode 100644 lib/locales/mk/cell_phone/formats.js create mode 100644 lib/locales/mk/cell_phone/index.js (limited to 'lib') 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"); -- cgit v1.2.3