Replace old use of $lang by l10n function.

git-svn-id: http://piwigo.org/svn/trunk@2201 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub 2008-01-30 22:07:07 +00:00
commit 69159c0e92
23 changed files with 181 additions and 181 deletions

View file

@ -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' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.$lang['search_result'].'</a>',
.l10n('search_result').'</a>',
)
);
}
@ -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' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.$lang['recent_pics_cat'].'</a>',
.l10n('recent_pics_cat').'</a>',
'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' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.$conf['top_number'].' '.$lang['most_visited_cat'].'</a>',
.$conf['top_number'].' '.l10n('most_visited_cat').'</a>',
'items' => array_from_query($query, 'id'),
)
);
@ -459,7 +459,7 @@ SELECT DISTINCT(id)
$page,
array(
'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.$conf['top_number'].' '.$lang['best_rated_cat'].'</a>',
.$conf['top_number'].' '.l10n('best_rated_cat').'</a>',
'items' => array_from_query($query, 'id'),
)
);
@ -482,7 +482,7 @@ SELECT DISTINCT(id)
$page,
array(
'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.$lang['random_cat'].'</a>',
.l10n('random_cat').'</a>',
'items' => array_from_query($query, 'id'),
)
);