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.
Normalize locale titles to (loosely) comply with Unicode BCP 47
- All locale titles are now in the format "<Language> (<Country> <Region or Variant>); - "Greek" is now in english.
- Loading branch information
1 parent
84b8d4e
commit ca0d981
Showing
13 changed files
with
15 additions
and
15 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
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 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