summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/pagination/constants.js
blob: f8a6d37dea17d1e9bb58b6457ef83f9f32afa19a (plain)
1
2
3
4
5
6
7
8
9
10
import { s__ } from '~/locale';

export const PREV = s__('Pagination|Prev');
export const NEXT = s__('Pagination|Next');
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');