diff options
author | plegall <plg@piwigo.org> | 2005-03-06 21:31:19 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-03-06 21:31:19 +0000 |
commit | f9823c912b84218eec7456cd24ed137146090232 (patch) | |
tree | d76e71f6c8f5e505c1186508d255620aa38a9ee9 /include | |
parent | 8397b98d2845eb1ee1d9ea8c08c270ad6606df11 (diff) |
- bug fixed : "all" categories link name is now localized
git-svn-id: http://piwigo.org/svn/trunk@744 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/category_calendar.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/category_calendar.inc.php b/include/category_calendar.inc.php index 9451e5684..fd6c11861 100644 --- a/include/category_calendar.inc.php +++ b/include/category_calendar.inc.php @@ -370,7 +370,7 @@ elseif (isset($page['calendar_day'])) { if ($calendar_category == 0) { - $name = '[all]'; + $name = '['.$lang['all_categories'].']'; } else { |