We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue https://react-component.github.io/pagination/?path=/story/rc-pagination--default
Button for Prev and Next shows korean text when mouse-over, how to make it english or change text?
Solution https://github.com/react-component/pagination/tree/master/src/locale - List of locales. Example english.
const localeEn = { // Options.jsx items_per_page: '/ page', jump_to: 'Go to', jump_to_confirm: 'confirm', page: '', // Pagination.jsx prev_page: 'Previous Page', next_page: 'Next Page', prev_5: 'Previous 5 Pages', next_5: 'Next 5 Pages', prev_3: 'Previous 3 Pages', next_3: 'Next 3 Pages', }; <Pagination locale={LocaleEng} />
The text was updated successfully, but these errors were encountered:
Hi! You can import from own module!
Look this
import RcPagination from 'rc-pagination'; import locale from 'rc-pagination/es/locale/en_US';
And use in component
<RcPagination locale={locale} />
Sorry, something went wrong.
No branches or pull requests
Issue
https://react-component.github.io/pagination/?path=/story/rc-pagination--default
Button for Prev and Next shows korean text when mouse-over, how to make it english or change text?
Solution
https://github.com/react-component/pagination/tree/master/src/locale - List of locales.
Example english.
The text was updated successfully, but these errors were encountered: