Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feature 2379: missing a "s" in languages keys
git-svn-id: http://piwigo.org/svn/trunk@13225 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
mistic100 committed Feb 17, 2012
1 parent e474f94 commit 10b940b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/configuration.php
Expand Up @@ -126,7 +126,7 @@

$comments_order = array(
'ASC' => l10n('Show oldest comments first'),
'DESC' => l10n('Show latest comment first'),
'DESC' => l10n('Show latest comments first'),
);


Expand Down
2 changes: 1 addition & 1 deletion include/picture_comment.inc.php
Expand Up @@ -134,7 +134,7 @@

$template->assign(array(
'COMMENTS_ORDER_URL' => add_url_params( duplicate_picture_url(), array('comments_order'=> ($comments_order == 'ASC' ? 'DESC' : 'ASC') ) ),
'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('Show latest comment first') : l10n('Show oldest comments first'),
'COMMENTS_ORDER_TITLE' => $comments_order == 'ASC' ? l10n('Show latest comments first') : l10n('Show oldest comments first'),
));

$query = '
Expand Down
2 changes: 1 addition & 1 deletion language/en_UK/common.lang.php
Expand Up @@ -313,7 +313,7 @@
$lang['Show number of comments'] = "Show number of comments";
$lang['Show number of hits'] = "Show number of hits";
$lang['Show oldest comments first'] = 'Show oldest comments first';
$lang['Show latest comment first'] = 'Show latest comment first';
$lang['Show latest comments first'] = 'Show latest comments first';
$lang['show tag cloud'] = "show tags cloud";
$lang['Since'] = "Since";
$lang['slideshow'] = "slideshow";
Expand Down

0 comments on commit 10b940b

Please sign in to comment.