aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPier-Luc Gendreau <[email protected]>2015-07-02 19:34:43 -0400
committerPier-Luc Gendreau <[email protected]>2015-07-02 19:34:43 -0400
commitb02cd8e014c3b2fa8ee1954c676512b4795b54e4 (patch)
treeda88d295b24e34a134f6fb02e9216c0f2004509b
parent658a0a55df28b7524481c9d49c7aa7c79432f3ea (diff)
downloadfaker-b02cd8e014c3b2fa8ee1954c676512b4795b54e4.tar.xz
faker-b02cd8e014c3b2fa8ee1954c676512b4795b54e4.zip
Create fr_CA.js
Postal code format: http://bdl.oqlf.gouv.qc.ca/bdl/gabarit_bdl.asp?id=5052 Phone number formats: http://bdl.oqlf.gouv.qc.ca/bdl/gabarit_bdl.asp?id=3293
-rw-r--r--lib/locales/fr_CA.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/lib/locales/fr_CA.js b/lib/locales/fr_CA.js
new file mode 100644
index 00000000..9128fe7b
--- /dev/null
+++ b/lib/locales/fr_CA.js
@@ -0,0 +1,65 @@
+var fr_CA = {};
+module["exports"] = fr_CA;
+fr_CA.title = "Canada (French)";
+fr_CA.address = {
+ "postcode": [
+ "?#? #?#"
+ ],
+ "state": [
+ "Alberta",
+ "Colombie-Britannique",
+ "Manitoba",
+ "Nouveau-Brunswick",
+ "Terre-Neuve-et-Labrador",
+ "Nouvelle-Écosse",
+ "Territoires du Nord-Ouest",
+ "Nunavut",
+ "Ontario",
+ "Île-du-Prince-Édouard",
+ "Québec",
+ "Saskatchewan",
+ "Yukon"
+ ],
+ "state_abbr": [
+ "AB",
+ "BC",
+ "MB",
+ "NB",
+ "NL",
+ "NS",
+ "NU",
+ "NT",
+ "ON",
+ "PE",
+ "QC",
+ "SK",
+ "YK"
+ ],
+ "default_country": [
+ "Canada"
+ ]
+};
+fr_CA.internet = {
+ "free_email": [
+ "gmail.com",
+ "yahoo.ca",
+ "hotmail.com"
+ ],
+ "domain_suffix": [
+ "qc.ca",
+ "ca",
+ "com",
+ "biz",
+ "info",
+ "name",
+ "net",
+ "org"
+ ]
+};
+fr_CA.phone_number = {
+ "formats": [
+ "### ###-####",
+ "1 ### ###-####",
+ "### ###-####, poste ###"
+ ]
+};