From 064afe7465b5094de2944c64e9c38b59e7a545b0 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 22 Feb 2017 16:36:08 -0500
Subject: [PATCH] Fix inconsistent string.

---
 themes/bootstrap3/templates/Helpers/pagination.phtml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/themes/bootstrap3/templates/Helpers/pagination.phtml b/themes/bootstrap3/templates/Helpers/pagination.phtml
index c7f104b7740..584ac0d8234 100644
--- a/themes/bootstrap3/templates/Helpers/pagination.phtml
+++ b/themes/bootstrap3/templates/Helpers/pagination.phtml
@@ -4,10 +4,10 @@
     <li<? if (isset($this->previous)): ?>>
       <? $newParams = $this->params; $newParams['page'] = $this->previous; ?>
       <a href="<?= $this->currentPath() . '?' . http_build_query($newParams); ?>">
-        &laquo; <?=$this->translate('Previous')?>
+        &laquo; <?=$this->translate('Prev')?>
       </a>
     <? else: ?>
-       class="disabled"> <span>&laquo; <?=$this->translate('Previous')?></span>
+       class="disabled"> <span>&laquo; <?=$this->translate('Prev')?></span>
     <? endif; ?>
     </li>
 
-- 
GitLab