Add i18n support for pagination test

This commit is contained in:
kushalpandya 2017-09-21 14:24:13 +05:30
parent 251ed2d405
commit 04aaf393a0
1 changed files with 6 additions and 4 deletions

View File

@ -1,11 +1,13 @@
<script>
import { s__ } from '../../locale';
const PAGINATION_UI_BUTTON_LIMIT = 4;
const UI_LIMIT = 6;
const SPREAD = '...';
const PREV = 'Prev';
const NEXT = 'Next';
const FIRST = '« First';
const LAST = 'Last »';
const PREV = s__('Pagination|Prev');
const NEXT = s__('Pagination|Next');
const FIRST = s__('Pagination|« First');
const LAST = s__('Pagination|Last »');
export default {
props: {