From 69159c0e9238fd369dca2181af6fb9de47b14440 Mon Sep 17 00:00:00 2001 From: rub Date: Wed, 30 Jan 2008 22:07:07 +0000 Subject: Replace old use of $lang by l10n function. git-svn-id: http://piwigo.org/svn/trunk@2201 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/section_init.inc.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/section_init.inc.php') diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 240beb804..bfed38409 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -216,7 +216,7 @@ if ('categories' == $page['section']) } else { - $page['title'] = $lang['no_category']; + $page['title'] = l10n('no_category'); } if @@ -340,7 +340,7 @@ SELECT DISTINCT(id) $page, array( 'title' => '' - .$lang['search_result'].'', + .l10n('search_result').'', ) ); } @@ -370,7 +370,7 @@ SELECT image_id $page = array_merge( $page, array( - 'title' => $lang['favorites'], + 'title' => l10n('favorites'), 'items' => array_from_query($query, 'image_id'), ) ); @@ -395,7 +395,7 @@ SELECT DISTINCT(id) $page, array( 'title' => '' - .$lang['recent_pics_cat'].'', + .l10n('recent_pics_cat').'', 'items' => array_from_query($query, 'id'), ) ); @@ -408,7 +408,7 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => $lang['recent_cats_cat'], + 'title' => l10n('recent_cats_cat'), ) ); } @@ -433,7 +433,7 @@ SELECT DISTINCT(id) $page, array( 'title' => '' - .$conf['top_number'].' '.$lang['most_visited_cat'].'', + .$conf['top_number'].' '.l10n('most_visited_cat').'', 'items' => array_from_query($query, 'id'), ) ); @@ -459,7 +459,7 @@ SELECT DISTINCT(id) $page, array( 'title' => '' - .$conf['top_number'].' '.$lang['best_rated_cat'].'', + .$conf['top_number'].' '.l10n('best_rated_cat').'', 'items' => array_from_query($query, 'id'), ) ); @@ -482,7 +482,7 @@ SELECT DISTINCT(id) $page, array( 'title' => '' - .$lang['random_cat'].'', + .l10n('random_cat').'', 'items' => array_from_query($query, 'id'), ) ); -- cgit v1.2.3