fixes #300, album sort by date, make obvious we use photo dates

This commit is contained in:
plegall
2017-03-09 11:58:06 +01:00
parent 45cacb4ebd
commit e59f69c3a5
3 changed files with 8 additions and 6 deletions
+4 -4
View File
@@ -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)'),
);
// +-----------------------------------------------------------------------+