diff options
author | Kushal Pandya <kushalspandya@gmail.com> | 2019-06-24 05:52:28 +0000 |
---|---|---|
committer | Kushal Pandya <kushalspandya@gmail.com> | 2019-06-24 05:52:28 +0000 |
commit | 97e8f494427582251af55056d25459bf038dabbc (patch) | |
tree | c4072d5a785f53732783bd7a8150ea699c427f8a /app/assets/javascripts | |
parent | b2f0955b77eb260041f497642d4b31424970f987 (diff) | |
parent | 4e6d6877f7c984d742e5ccc6f9ccb92d6a9281ef (diff) | |
download | gitlab-ce-97e8f494427582251af55056d25459bf038dabbc.tar.gz |
Merge branch 'update-pagination-texts' into 'master'
Update pagination prev and next texts
See merge request gitlab-org/gitlab-ce!29911
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r-- | app/assets/javascripts/vue_shared/components/pagination/constants.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/vue_shared/components/pagination/constants.js b/app/assets/javascripts/vue_shared/components/pagination/constants.js index 748ad178c70..229132c0e33 100644 --- a/app/assets/javascripts/vue_shared/components/pagination/constants.js +++ b/app/assets/javascripts/vue_shared/components/pagination/constants.js @@ -3,8 +3,8 @@ import { s__ } from '~/locale'; export const PAGINATION_UI_BUTTON_LIMIT = 4; export const UI_LIMIT = 6; export const SPREAD = '...'; -export const PREV = s__('Pagination|Prev'); -export const NEXT = s__('Pagination|Next'); +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'); |