-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gergely Nemeth
committed
Feb 27, 2019
1 parent
6ef7e2e
commit a040d5f
Showing
2 changed files
with
23 additions
and
12 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
17 changes: 17 additions & 0 deletions
17
documentation-site/static/examples/internationalization/example.js
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,17 @@ | ||
import React from 'react'; | ||
import {LocaleProvider} from 'baseui'; | ||
import {StatefulPagination} from 'baseui/pagination'; | ||
|
||
const localeOverrideHu = { | ||
pagination: { | ||
next: 'Következő', | ||
prev: 'Előző', | ||
preposition: ' ', | ||
}, | ||
}; | ||
|
||
export default () => ( | ||
<LocaleProvider locale={localeOverrideHu}> | ||
<StatefulPagination numPages={10} /> | ||
</LocaleProvider> | ||
); |