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.
Merge pull request #955 from Moosh-be/normalize-locales
Normalize locales
- Loading branch information
Showing
45 changed files
with
55 additions
and
30 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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,8 @@ | ||
var en_AU_ocker = {}; | ||
module['exports'] = en_AU_ocker; | ||
en_AU_ocker.title = "English (Australia Ocker)"; | ||
en_AU_ocker.name = require("./name"); | ||
en_AU_ocker.company = require("./company"); | ||
en_AU_ocker.internet = require("./internet"); | ||
en_AU_ocker.address = require("./address"); | ||
en_AU_ocker.phone_number = require("./phone_number"); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
var en_BORK = {}; | ||
module['exports'] = en_BORK; | ||
en_BORK.title = "Bork (English)"; | ||
en_BORK.title = "English (Bork)"; | ||
en_BORK.lorem = require("./lorem"); |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
var en_CA = {}; | ||
module['exports'] = en_CA; | ||
en_CA.title = "Canada (English)"; | ||
en_CA.title = "English (Canada)"; | ||
en_CA.address = require("./address"); | ||
en_CA.internet = require("./internet"); | ||
en_CA.phone_number = require("./phone_number"); |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
var en_US = {}; | ||
module['exports'] = en_US; | ||
en_US.title = "United States (English)"; | ||
en_US.title = "English (United States)"; | ||
en_US.internet = require("./internet"); | ||
en_US.address = require("./address"); | ||
en_US.phone_number = require("./phone_number"); |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
var en_ZA = {}; | ||
module['exports'] = en_ZA; | ||
en_ZA.title = "South Africa (English)"; | ||
en_ZA.title = "English (South Africa)"; | ||
en_ZA.address = require("./address"); | ||
en_ZA.internet = require("./internet"); | ||
en_ZA.name = require("./name"); | ||
en_ZA.phone_number = require("./phone_number"); | ||
en_ZA.cell_phone = require("./cell_phone"); | ||
en_ZA.company = require("./company"); | ||
en_ZA.company = require("./company"); |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
var fr_CA = {}; | ||
module['exports'] = fr_CA; | ||
fr_CA.title = "Canada (French)"; | ||
fr_CA.title = "French (Canada)"; | ||
fr_CA.address = require("./address"); | ||
fr_CA.internet = require("./internet"); | ||
fr_CA.phone_number = require("./phone_number"); |
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'af_ZA', localeFallback: 'en' }); | ||
faker.locales['af_ZA'] = require('../lib/locales/af_ZA'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'ar', localeFallback: 'en' }); | ||
faker.locales['ar'] = require('../lib/locales/ar'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'el', localeFallback: 'en' }); | ||
faker.locales['el'] = require('../lib/locales/el'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'en_AU_ocker', localeFallback: 'en' }); | ||
faker.locales['en_AU_ocker'] = require('../lib/locales/en_AU_ocker'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'pt_PT', localeFallback: 'en' }); | ||
faker.locales['pt_PT'] = require('../lib/locales/pt_PT'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |
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,5 @@ | ||
var Faker = require('../lib'); | ||
var faker = new Faker({ locale: 'zu_ZA', localeFallback: 'en' }); | ||
faker.locales['zu_ZA'] = require('../lib/locales/zu_ZA'); | ||
faker.locales['en'] = require('../lib/locales/en'); | ||
module['exports'] = faker; |