aboutsummaryrefslogtreecommitdiffstats
path: root/picture.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-05-15 20:26:56 +0000
committerrub <rub@piwigo.org>2007-05-15 20:26:56 +0000
commit35858a70a0b9518d3395b4a0883381b8804281cd (patch)
tree5ef6f0715d93b81592dbbb4b2894d7bfe14c8004 /picture.php
parentb0e92b7df1b0fe8f07b73e80364ce69a391b5f6a (diff)
Replace some $lang by l10n
Merge BSF 2013:2014 into branch-1_7 git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2015 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r--picture.php9
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')