mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
fixes #300, album sort by date, make obvious we use photo dates
This commit is contained in:
+4
-4
@@ -43,10 +43,10 @@ if (!empty($_POST) or isset($_GET['delete']))
|
||||
$sort_orders = array(
|
||||
'name ASC' => l10n('Album name, A → Z'),
|
||||
'name DESC' => l10n('Album name, Z → A'),
|
||||
'date_creation DESC' => l10n('Date created, new → old'),
|
||||
'date_creation ASC' => l10n('Date created, old → new'),
|
||||
'date_available DESC' => l10n('Date posted, new → old'),
|
||||
'date_available ASC' => l10n('Date posted, old → new'),
|
||||
'date_creation DESC' => l10n('Date created, new → old').' '.l10n('(determined from photos)'),
|
||||
'date_creation ASC' => l10n('Date created, old → new').' '.l10n('(determined from photos)'),
|
||||
'date_available DESC' => l10n('Date posted, new → old').' '.l10n('(determined from photos)'),
|
||||
'date_available ASC' => l10n('Date posted, old → new').' '.l10n('(determined from photos)'),
|
||||
);
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
Reference in New Issue
Block a user