Skip to content

Commit

Permalink
[BUGFIX] Use correct label in BE pagination
Browse files Browse the repository at this point in the history
Replace a copy-paste error and show the correct
label instead in the counter of the pagination
of the BE.
  • Loading branch information
rintisch committed Jul 8, 2024
1 parent 68de453 commit 5e5aaa1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Resources/Private/Language/locallang.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,9 @@
<trans-unit id="tx_cart.backend.filter.end_date">
<source>End Date</source>
</trans-unit>
<trans-unit id="tx_cart.backend.pagination.records">
<source>Records</source>
</trans-unit>
<trans-unit id="tx_cart.backend.filter.no_results">
<source>No results for this filter</source>
</trans-unit>
Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Partials/Utility/Paginator.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<li class="page-item">
<span class="page-link">
<f:translate key="LLL:EXT:sf_event_mgt/Resources/Private/Language/locallang_be.xlf:administration.pagination.records" /> {pagination.startRecordNumber} - {pagination.endRecordNumber}
<f:translate key="tx_cart.backend.pagination.records" /> {pagination.startRecordNumber} - {pagination.endRecordNumber}
</span>
</li>

Expand Down Expand Up @@ -72,4 +72,4 @@
</f:if>
</ul>
</nav>
</html>
</html>

0 comments on commit 5e5aaa1

Please sign in to comment.