forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Romanian dates and phone numbers
- Loading branch information
Showing
8 changed files
with
262 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
module["exports"] = [ | ||
"0726######", | ||
"0723######", | ||
"0722######", | ||
"0721######", | ||
"0720######", | ||
"0728######", | ||
"0729######", | ||
"0730######", | ||
"0739######", | ||
"0738######", | ||
"0737######", | ||
"0736######", | ||
"0735######", | ||
"0734######", | ||
"0733######", | ||
"0732######", | ||
"0731######", | ||
"0780######", | ||
"0788######", | ||
"0753######", | ||
"0754######", | ||
"0755######", | ||
"0756######", | ||
"0757######", | ||
"0758######", | ||
"0759######", | ||
"0748######", | ||
"0747######", | ||
"0746######", | ||
"0740######", | ||
"0741######", | ||
"0742######", | ||
"0743######", | ||
"0744######", | ||
"0745######", | ||
"0711######", | ||
"0727######", | ||
"0725######", | ||
"0724######", | ||
"0786######", | ||
"0760######", | ||
"0761######", | ||
"0762######", | ||
"0763######", | ||
"0764######", | ||
"0765######", | ||
"0766######", | ||
"0767######", | ||
"0785######", | ||
"0768######", | ||
"0769######", | ||
"0784######", | ||
"0770######", | ||
"0772######", | ||
"0771######", | ||
"0749######", | ||
"0750######", | ||
"0751######", | ||
"0752######" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var cell_phone = {}; | ||
module['exports'] = cell_phone; | ||
cell_phone.formats = require("./formats"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
var date = {}; | ||
module["exports"] = date; | ||
date.month = require("./month"); | ||
date.weekday = require("./weekday"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
module["exports"] = { | ||
wide: [ | ||
"Ianuarie", | ||
"Februarie", | ||
"Martie", | ||
"Aprilie", | ||
"Mai", | ||
"Iunie", | ||
"Iulie", | ||
"August", | ||
"Septembrie", | ||
"Octombrie", | ||
"Noiembrie", | ||
"Decembrie" | ||
], | ||
// Property "wide_context" is optional, if not set then "wide" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
wide_context: [ | ||
"Ianuarie", | ||
"Februarie", | ||
"Martie", | ||
"Aprilie", | ||
"Mai", | ||
"Iunie", | ||
"Iulie", | ||
"August", | ||
"Septembrie", | ||
"Octombrie", | ||
"Noiembrie", | ||
"Decembrie" | ||
], | ||
abbr: [ | ||
"Ian", | ||
"Feb", | ||
"Mar", | ||
"Apr", | ||
"Mai", | ||
"Iun", | ||
"Iul", | ||
"Aug", | ||
"Sep", | ||
"Oct", | ||
"Noi", | ||
"Dec" | ||
], | ||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
abbr_context: [ | ||
"Ian", | ||
"Feb", | ||
"Mar", | ||
"Apr", | ||
"Mai", | ||
"Iun", | ||
"Iul", | ||
"Aug", | ||
"Sep", | ||
"Oct", | ||
"Noi", | ||
"Dec" | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module["exports"] = { | ||
wide: [ | ||
"Luni", | ||
"Marți", | ||
"Miercuri", | ||
"Joi", | ||
"Vineri", | ||
"Sâmbătă", | ||
"Duminică" | ||
], | ||
// Property "wide_context" is optional, if not set then "wide" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
wide_context: [ | ||
"Luni", | ||
"Marți", | ||
"Miercuri", | ||
"Joi", | ||
"Vineri", | ||
"Sâmbătă", | ||
"Duminică" | ||
], | ||
abbr: [ | ||
"Luni", | ||
"Marți", | ||
"Miercuri", | ||
"Joi", | ||
"Vineri", | ||
"Sâmbătă", | ||
"Duminică" | ||
], | ||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead | ||
// It is used to specify a word in context, which may differ from a stand-alone word | ||
abbr_context: [ | ||
"Luni", | ||
"Marți", | ||
"Miercuri", | ||
"Joi", | ||
"Vineri", | ||
"Sâmbătă", | ||
"Duminică" | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
module["exports"] = [ | ||
"021######", | ||
"031######", | ||
"0258######", | ||
"0358######", | ||
"0257######", | ||
"0357######", | ||
"0248######", | ||
"0348######", | ||
"0234######", | ||
"0334######", | ||
"0259######", | ||
"0359######", | ||
"0263######", | ||
"0363######", | ||
"0231######", | ||
"0331######", | ||
"0239######", | ||
"0339######", | ||
"0268######", | ||
"0368######", | ||
"0238######", | ||
"0338######", | ||
"0242######", | ||
"0342######", | ||
"0255######", | ||
"0355######", | ||
"0264######", | ||
"0364######", | ||
"0241######", | ||
"0341######", | ||
"0267######", | ||
"0367######", | ||
"0245######", | ||
"0345######", | ||
"0251######", | ||
"0351######", | ||
"0236######", | ||
"0336######", | ||
"0246######", | ||
"0346######", | ||
"0253######", | ||
"0353######", | ||
"0266######", | ||
"0366######", | ||
"0254######", | ||
"0354######", | ||
"0243######", | ||
"0343######", | ||
"0232######", | ||
"0332######", | ||
"0262######", | ||
"0362######", | ||
"0252######", | ||
"0352######", | ||
"0265######", | ||
"0365######", | ||
"0233######", | ||
"0333######", | ||
"0249######", | ||
"0349######", | ||
"0244######", | ||
"0344######", | ||
"0260######", | ||
"0360######", | ||
"0261######", | ||
"0361######", | ||
"0269######", | ||
"0369######", | ||
"0230######", | ||
"0330######", | ||
"0247######", | ||
"0347######", | ||
"0256######", | ||
"0356######", | ||
"0240######", | ||
"0340######", | ||
"0250######", | ||
"0350######", | ||
"0235######", | ||
"0335######", | ||
"0237######", | ||
"0337######" | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var phone_number = {}; | ||
module['exports'] = phone_number; | ||
phone_number.formats = require("./formats"); |