From 5f61e426dc90b7b697a46da009af2fc88eed3ad0 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 15 Jul 2025 12:39:51 +0200 Subject: Sort by category title, feed title (#7702) * Sort by category name, feed name fix https://github.com/FreshRSS/FreshRSS/issues/7698 Note that sorting is done with the default SQL collation for now, meaning that lower-case vs. upper-case and diacritics are influencing the sorting order. Improvements left for future work. Watch out that those sorting criteria are slower due to additional joins, additional requests, and poorer indexes. * i18n:pl Co-authored-by: Inverle * i18n: nl Co-authored-by: Frans de Jonge * Fix preserve sort --------- Co-authored-by: Inverle Co-authored-by: Frans de Jonge --- app/i18n/nl/index.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/i18n/nl') diff --git a/app/i18n/nl/index.php b/app/i18n/nl/index.php index 5b1600370..ebf3c3123 100644 --- a/app/i18n/nl/index.php +++ b/app/i18n/nl/index.php @@ -77,8 +77,16 @@ return array( 'search_short' => 'Zoeken', 'sort' => array( '_' => 'Sorteercriteria', + 'c' => array( + 'name_asc' => 'Categorie, feedtitels A→Z', + 'name_desc' => 'Categorie, feedtitels Z→A', + ), 'date_asc' => 'Publicatiedatum 1→9', 'date_desc' => 'Publicatiedatum 9→1', + 'f' => array( + 'name_asc' => 'Feedtitel A→Z', + 'name_desc' => 'Feedtitel Z→A', + ), 'id_asc' => 'Nieuw ontvangen laatst', 'id_desc' => 'Nieuw ontvangen eerst', 'link_asc' => 'Link A→Z', // IGNORE -- cgit v1.2.3