diff options
| author | Tito Nobre <[email protected]> | 2018-10-14 14:28:42 +0100 |
|---|---|---|
| committer | Tito Nobre <[email protected]> | 2018-10-14 14:28:42 +0100 |
| commit | ea6f1055ab5099f8ca5a989fb0df140b20f15c97 (patch) | |
| tree | 7c867d9e9896a2bcfa33657f94041249d079c44c /lib | |
| parent | a84e3a96ab2fd065f164b8189c865b1678845dcd (diff) | |
| download | faker-ea6f1055ab5099f8ca5a989fb0df140b20f15c97.tar.xz faker-ea6f1055ab5099f8ca5a989fb0df140b20f15c97.zip | |
Improve locale pt_PT with cell_phone formats
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/pt_PT/cell_phone/formats.js | 5 | ||||
| -rw-r--r-- | lib/locales/pt_PT/cell_phone/index.js | 3 | ||||
| -rw-r--r-- | lib/locales/pt_PT/index.js | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/lib/locales/pt_PT/cell_phone/formats.js b/lib/locales/pt_PT/cell_phone/formats.js new file mode 100644 index 00000000..97ba1cee --- /dev/null +++ b/lib/locales/pt_PT/cell_phone/formats.js @@ -0,0 +1,5 @@ +module["exports"] = [ + "+351 91#######", + "+351 93#######", + "+351 96#######" +]; diff --git a/lib/locales/pt_PT/cell_phone/index.js b/lib/locales/pt_PT/cell_phone/index.js new file mode 100644 index 00000000..8de997ba --- /dev/null +++ b/lib/locales/pt_PT/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/pt_PT/index.js b/lib/locales/pt_PT/index.js index 3c4e42f6..913f5e5d 100644 --- a/lib/locales/pt_PT/index.js +++ b/lib/locales/pt_PT/index.js @@ -5,5 +5,6 @@ pt_PT.address = require("./address"); pt_PT.internet = require("./internet"); pt_PT.name = require("./name"); pt_PT.phone_number = require("./phone_number"); +pt_PT.cell_phone = require("./cell_phone"); pt_PT.commerce = require("./commerce"); pt_PT.date = require("./date"); |
