Skip to content

Commit

Permalink
feature 2586: add capitals to sort labels on admin
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@13840 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
mistic100 committed Mar 31, 2012
1 parent 182f2b9 commit 3a76852
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions admin/configuration.php
Expand Up @@ -107,21 +107,21 @@
// image order management
$sort_fields = array(
'' => '',
'file ASC' => l10n('file name, A → Z'),
'file DESC' => l10n('file name, Z → A'),
'name ASC' => l10n('photo title, A → Z'),
'name DESC' => l10n('photo title, 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'),
'rating_score DESC' => l10n('rating score, high → low'),
'rating_score ASC' => l10n('rating score, low → high'),
'hit DESC' => l10n('visits, high → low'),
'hit ASC' => l10n('visits, low → high'),
'id ASC' => l10n('numeric identifier, 1 → 9'),
'id DESC' => l10n('numeric identifier, 9 → 1'),
'rank ASC' => l10n('manual sort order'),
'file ASC' => l10n('File name, A → Z'),
'file DESC' => l10n('File name, Z → A'),
'name ASC' => l10n('Photo title, A → Z'),
'name DESC' => l10n('Photo title, 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'),
'rating_score DESC' => l10n('Rating score, high → low'),
'rating_score ASC' => l10n('Rating score, low → high'),
'hit DESC' => l10n('Visits, high → low'),
'hit ASC' => l10n('Visits, low → high'),
'id ASC' => l10n('Numeric identifier, 1 → 9'),
'id DESC' => l10n('Numeric identifier, 9 → 1'),
'rank ASC' => l10n('Manual sort order'),
);

$comments_order = array(
Expand Down

0 comments on commit 3a76852

Please sign in to comment.