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 #719 from strobelt/master
Add date to pt_BR
- Loading branch information
Showing
4 changed files
with
111 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,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,63 @@ | ||
// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1799 | ||
module["exports"] = { | ||
wide: [ | ||
"Janeiro", | ||
"Fevereiro", | ||
"Março", | ||
"Abril", | ||
"Maio", | ||
"Junho", | ||
"Julho", | ||
"Agosto", | ||
"Setembro", | ||
"Outubro", | ||
"Novembro", | ||
"Dezembro" | ||
], | ||
// 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: [ | ||
"Janeiro", | ||
"Fevereiro", | ||
"Março", | ||
"Abril", | ||
"Maio", | ||
"Junho", | ||
"Julho", | ||
"Agosto", | ||
"Setembro", | ||
"Outubro", | ||
"Novembro", | ||
"Dezembro" | ||
], | ||
abbr: [ | ||
"Jan", | ||
"Fev", | ||
"Mar", | ||
"Abr", | ||
"Mai", | ||
"Jun", | ||
"Jul", | ||
"Ago", | ||
"Set", | ||
"Out", | ||
"Nov", | ||
"Dez" | ||
], | ||
// 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: [ | ||
"Jan", | ||
"Fev", | ||
"Mar", | ||
"Abr", | ||
"Mai", | ||
"Jun", | ||
"Jul", | ||
"Ago", | ||
"Set", | ||
"Out", | ||
"Nov", | ||
"Dez" | ||
] | ||
}; |
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,43 @@ | ||
// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1847 | ||
module["exports"] = { | ||
wide: [ | ||
"Domingo", | ||
"Segunda", | ||
"Terça", | ||
"Quarta", | ||
"Quinta", | ||
"Sexta", | ||
"Sábado" | ||
], | ||
// 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: [ | ||
"Domingo", | ||
"Segunda", | ||
"Terça", | ||
"Quarta", | ||
"Quinta", | ||
"Sexta", | ||
"Sábado" | ||
], | ||
abbr: [ | ||
"Dom", | ||
"Seg", | ||
"Ter", | ||
"Qua", | ||
"Qui", | ||
"Sex", | ||
"Sáb" | ||
], | ||
// 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: [ | ||
"Dom", | ||
"Seg", | ||
"Ter", | ||
"Qua", | ||
"Qui", | ||
"Sex", | ||
"Sáb" | ||
] | ||
}; |
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