pagination.php 705B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. return [
  3. 'label' => 'ページネーション',
  4. 'overview' => ':total件中:first件目から:last件目を表示',
  5. 'fields' => [
  6. 'records_per_page' => [
  7. 'label' => '件を表示',
  8. 'options' => [
  9. 'all' => 'すべて',
  10. ],
  11. ],
  12. ],
  13. 'actions' => [
  14. 'first' => [
  15. 'label' => '最初',
  16. ],
  17. 'go_to_page' => [
  18. 'label' => ':pageページへ移動',
  19. ],
  20. 'last' => [
  21. 'label' => '最後',
  22. ],
  23. 'next' => [
  24. 'label' => '次',
  25. ],
  26. 'previous' => [
  27. 'label' => '前',
  28. ],
  29. ],
  30. ];