aboutsummaryrefslogtreecommitdiffstats
path: root/admin/comments.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-03-29 19:04:54 +0000
committerrub <rub@piwigo.org>2007-03-29 19:04:54 +0000
commit7acc304f5543f2210a888e9bb562bb25032aa694 (patch)
tree05e9be787ad2d40f304c9c6d871f39a14f85299b /admin/comments.php
parentac97e7356502f2300c4e6c6f85e35eb854d5f40a (diff)
o add missing $lang
o use of l10n_dec o normalize file header git-svn-id: http://piwigo.org/svn/trunk@1932 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/comments.php')
-rw-r--r--admin/comments.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/comments.php b/admin/comments.php
index 70642065d..6bba32a96 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -89,8 +89,8 @@ UPDATE '.COMMENTS_TABLE.'
array_push(
$page['infos'],
- sprintf(
- l10n('%d user comments validated'),
+ l10n_dec(
+ '%d user comment validated', '%d user comments validated',
count($to_validate)
)
);
@@ -107,8 +107,8 @@ DELETE
array_push(
$page['infos'],
- sprintf(
- l10n('%d user comments rejected'),
+ l10n_dec(
+ '%d user comment rejected', '%d user comments rejected',
count($to_reject)
)
);