aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2006-04-14 21:12:26 +0000
committerrub <rub@piwigo.org>2006-04-14 21:12:26 +0000
commit4e8f0f583fc7254500e9d765853e30db4f9e5b01 (patch)
treea6c52738093d32b9dcb756b311972458d24e72d8 /include
parentc5fa25261540a813022699756e3753abad159317 (diff)
Issue ID 326:
o Fix none translations "pictures" o Fix display 0 pictures Report of svn:1172 git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1173 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/category_recent_cats.inc.php2
-rw-r--r--include/category_subcats.inc.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/category_recent_cats.inc.php b/include/category_recent_cats.inc.php
index ae98426bd..b9aebcf2c 100644
--- a/include/category_recent_cats.inc.php
+++ b/include/category_recent_cats.inc.php
@@ -99,7 +99,7 @@ if ($conf['subcatify'])
)
),
'NAME' => get_cat_display_name_cache($row['uppercats'], null, false),
- 'NB_IMAGES' => $row['nb_images'],
+ 'CAPTION_NB_IMAGES' => (($row['nb_images'] == 0) ? '' : sprintf("%d ".l10n('pictures'), $row['nb_images'])),
'DESCRIPTION' => $comment,
)
);
diff --git a/include/category_subcats.inc.php b/include/category_subcats.inc.php
index 3e31ecc80..1fc6b2ac4 100644
--- a/include/category_subcats.inc.php
+++ b/include/category_subcats.inc.php
@@ -160,7 +160,7 @@ SELECT id, path, tn_ext
)
),
'NAME' => $category['name'],
- 'NB_IMAGES' => $category['nb_images'],
+ 'CAPTION_NB_IMAGES' => (($category['nb_images'] == 0) ? '' : sprintf("%d ".l10n('pictures'), $category['nb_images'])),
'DESCRIPTION' => @$category['comment'],
)
);