2019-09-04 21:01:54 +05:30
|
|
|
|
import { s__ } from '~/locale';
|
|
|
|
|
|
|
|
|
|
export const PAGINATION_UI_BUTTON_LIMIT = 4;
|
|
|
|
|
export const UI_LIMIT = 6;
|
|
|
|
|
export const SPREAD = '...';
|
2019-09-30 21:07:59 +05:30
|
|
|
|
export const PREV = s__('Pagination|‹ Prev');
|
|
|
|
|
export const NEXT = s__('Pagination|Next ›');
|
2019-09-04 21:01:54 +05:30
|
|
|
|
export const FIRST = s__('Pagination|« First');
|
|
|
|
|
export const LAST = s__('Pagination|Last »');
|
|
|
|
|
export const LABEL_FIRST_PAGE = s__('Pagination|Go to first page');
|
|
|
|
|
export const LABEL_PREV_PAGE = s__('Pagination|Go to previous page');
|
|
|
|
|
export const LABEL_NEXT_PAGE = s__('Pagination|Go to next page');
|
|
|
|
|
export const LABEL_LAST_PAGE = s__('Pagination|Go to last page');
|