diff options
| author | 2025-07-15 12:39:51 +0200 | |
|---|---|---|
| committer | 2025-07-15 12:39:51 +0200 | |
| commit | 5f61e426dc90b7b697a46da009af2fc88eed3ad0 (patch) | |
| tree | 079de4957a207ed08a8de181f4f2649067277933 /app/i18n/it/index.php | |
| parent | 8a44d1045a49aa04d16af0bd4c8a0d56cadf1be3 (diff) | |
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 <inverle@proton.me>
* i18n: nl
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
* Fix preserve sort
---------
Co-authored-by: Inverle <inverle@proton.me>
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'app/i18n/it/index.php')
| -rw-r--r-- | app/i18n/it/index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/i18n/it/index.php b/app/i18n/it/index.php index 6cbd457ca..a111c55ff 100644 --- a/app/i18n/it/index.php +++ b/app/i18n/it/index.php @@ -77,8 +77,16 @@ return array( 'search_short' => 'Cerca', 'sort' => array( '_' => 'Ordina per', + 'c' => array( + 'name_asc' => 'Category, feed titles A→Z', // TODO + 'name_desc' => 'Category, feed titles Z→A', // TODO + ), 'date_asc' => 'Data di pubblicazione 1→9', 'date_desc' => 'Data di pubblicazione 9→1', + 'f' => array( + 'name_asc' => 'Feed title A→Z', // TODO + 'name_desc' => 'Feed title Z→A', // TODO + ), 'id_asc' => 'Dal meno recente', 'id_desc' => 'Dal più recente', 'link_asc' => 'Link A→Z', // IGNORE |
