From 8afb39b1eb1e0269acf70cc921da6c4fc9a42c3c Mon Sep 17 00:00:00 2001 From: mistic100 Date: Fri, 10 Feb 2012 22:23:42 +0000 Subject: [PATCH] feature 2379: change captions for comment ordering git-svn-id: http://piwigo.org/svn/trunk@13088 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/picture_comment.inc.php | 2 +- language/en_UK/common.lang.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index 7432aa8d5..89713f0c4 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -134,7 +134,7 @@ SELECT $template->assign(array( 'COMMENTS_ORDER_URL' => duplicate_picture_url().'&comments_order='.($comments_order == 'ASC' ? 'DESC' : 'ASC'), - 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('ascending') : l10n('descending'), + 'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('old → new') : l10n('new → old'), )); $query = ' diff --git a/language/en_UK/common.lang.php b/language/en_UK/common.lang.php index 30b36927a..42a326c08 100644 --- a/language/en_UK/common.lang.php +++ b/language/en_UK/common.lang.php @@ -229,6 +229,8 @@ $lang['month'][8] = "August"; $lang['month'][9] = "September"; $lang['Most visited'] = "Most visited"; $lang['N/A'] = "N/A"; +$lang['old → new'] = 'old → new'; +$lang['new → old'] = 'new → old'; $lang['New on %s'] = "New on %s"; $lang['New password'] = "New password"; $lang['Next'] = "Next";