diff options
author | rub <rub@piwigo.org> | 2007-05-15 20:23:09 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-05-15 20:23:09 +0000 |
commit | 75bfe8b6678bfce6ff4e28d6df3246d9122ec823 (patch) | |
tree | a873c40b007b692e3385d812946933ab0fa98ecb /picture.php | |
parent | 88d47f233205e75b91ce422b555982af29805c92 (diff) |
Replace some $lang by l10n
git-svn-id: http://piwigo.org/svn/trunk@2014 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r-- | picture.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/picture.php b/picture.php index 71fb2d3eb..216355be4 100644 --- a/picture.php +++ b/picture.php @@ -4,7 +4,6 @@ // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ -// | branch : BSF (Best So Far) // | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ @@ -598,8 +597,8 @@ SELECT COUNT(*) AS nb_fav array( 'FAVORITE_IMG' => get_root_url().get_themeconf('icon_dir').'/favorite.png', - 'FAVORITE_HINT' => $lang['add_favorites_hint'], - 'FAVORITE_ALT' => $lang['add_favorites_alt'], + 'FAVORITE_HINT' => l10n('add_favorites_hint'), + 'FAVORITE_ALT' => l10n('add_favorites_alt'), 'U_FAVORITE' => add_url_params( $url_self, array('action'=>'add_to_favorites') @@ -614,8 +613,8 @@ SELECT COUNT(*) AS nb_fav array( 'FAVORITE_IMG' => get_root_url().get_themeconf('icon_dir').'/del_favorite.png', - 'FAVORITE_HINT' => $lang['del_favorites_hint'], - 'FAVORITE_ALT' => $lang['del_favorites_alt'], + 'FAVORITE_HINT' => l10n('del_favorites_hint'), + 'FAVORITE_ALT' => l10n('del_favorites_alt'), 'U_FAVORITE' => add_url_params( $url_self, array('action'=>'remove_from_favorites') |