Skip to content

Commit

Permalink
Merge pull request #548 from rintisch/bugfix/fix-label-in-backend-pag…
Browse files Browse the repository at this point in the history
…ination

[BUGFIX] Use correct label in BE pagination
  • Loading branch information
extcode authored Aug 1, 2024
2 parents 68de453 + 5e5aaa1 commit 2c78933
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 2c78933

Please sign in to comment.