From 22a7494009d4fff1d5eb894ad71bc4705a13eada Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Tue, 26 Jan 2021 11:21:58 +0100 Subject: [PATCH] [TASK] Revert removal of pagination labels Restore the translations of pagination labels to make updates easier and to have some default labels which can be used by various pagination implementations. Resolves: #93365 Related: #92529 Releases: master Change-Id: I4b5d9da4bacff4c597b41efd2677ecd665fcaa87 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67533 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Benni Mack <benni@typo3.org> --- .../Resources/Private/Language/locallang.xlf | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/typo3/sysext/fluid/Resources/Private/Language/locallang.xlf b/typo3/sysext/fluid/Resources/Private/Language/locallang.xlf index 7d492804ee82..2a8ce5d55030 100644 --- a/typo3/sysext/fluid/Resources/Private/Language/locallang.xlf +++ b/typo3/sysext/fluid/Resources/Private/Language/locallang.xlf @@ -3,6 +3,27 @@ <file t3:id="1415814823" source-language="en" datatype="plaintext" original="EXT:fluid/Resources/Private/Language/locallang.xlf" date="2012-03-30T23:43:57Z" product-name="fluid"> <header/> <body> + <trans-unit id="widget.pagination.previous" resname="widget.pagination.previous"> + <source>previous</source> + </trans-unit> + <trans-unit id="widget.pagination.next" resname="widget.pagination.next"> + <source>next</source> + </trans-unit> + <trans-unit id="widget.pagination.first" resname="widget.pagination.first"> + <source>first</source> + </trans-unit> + <trans-unit id="widget.pagination.last" resname="widget.pagination.last"> + <source>last</source> + </trans-unit> + <trans-unit id="widget.pagination.records" resname="widget.pagination.records"> + <source>Records</source> + </trans-unit> + <trans-unit id="widget.pagination.page" resname="widget.pagination.page"> + <source>Page</source> + </trans-unit> + <trans-unit id="widget.pagination.refresh" resname="widget.pagination.refresh"> + <source>Refresh</source> + </trans-unit> <trans-unit id="viewhelper.format.bytes.units" resname="viewhelper.format.bytes.units"> <source>B,KB,MB,GB,TB,PB,EB,ZB,YB</source> </trans-unit> -- GitLab