mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
parent
7c280f27a8
commit
4463abf202
1 changed files with 7 additions and 5 deletions
|
@ -712,11 +712,13 @@ export const getEuiContextMapping = () => {
|
|||
defaultMessage: 'Next page, {page}',
|
||||
values: { page },
|
||||
}),
|
||||
'euiPagination.pageOfTotalCompressed': ({ page, total }: EuiValues) =>
|
||||
i18n.translate('core.euiPagination.pageOfTotalCompressed', {
|
||||
defaultMessage: '{page} of {total}',
|
||||
values: { page, total },
|
||||
}),
|
||||
'euiPagination.pageOfTotalCompressed': ({ page, total }: EuiValues) => (
|
||||
<FormattedMessage
|
||||
id="core.euiPagination.pageOfTotalCompressed"
|
||||
defaultMessage="{page} of {total}"
|
||||
values={{ page, total }}
|
||||
/>
|
||||
),
|
||||
'euiPagination.previousPage': ({ page }: EuiValues) =>
|
||||
i18n.translate('core.euiPagination.previousPage', {
|
||||
defaultMessage: 'Previous page, {page}',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue