-
Notifications
You must be signed in to change notification settings - Fork 827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(i18n): add i18n support #951
Changes from 1 commit
ca53310
f4cdec4
d3d039b
36aada3
42ad35f
4c0d09e
d8ef6b2
bdb6726
f7ac2f3
03d1973
2ba26bb
d72da0d
f541e2e
635028d
b9ff5c9
bf02490
46d561c
4ef8859
41e1b78
029d327
cffbcb9
bd7fb02
f07ffcd
2f971f9
083752e
6ef7e2e
a040d5f
b2c2cff
c21f011
6a0c288
c353798
a2ab15d
4ee5e45
290357f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,12 @@ LICENSE file in the root directory of this source tree. | |
*/ | ||
// @flow | ||
|
||
export type DatepickerLocaleT = { | ||
export type DatepickerLocaleT = {| | ||
ariaLabel: string, | ||
chasestarr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}; | ||
nextMonth: string, | ||
prevMonth: string, | ||
screenReaderMessageInput: string, | ||
|}; | ||
|
||
export type LocaleT = {| | ||
datepicker: DatepickerLocaleT, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we be overriding the English locale and keeping all There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean user can do that but it should be a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that makes perfect sense 👍 |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. I wanted to point this one out. 👍