diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-07-28 21:27:42 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-07-28 21:27:42 +0000 |
commit | e507ac4bad2696c23512702b4fa7e91572ecce14 (patch) | |
tree | c7f437bb0838f1cd070bc8babcd10408260fe806 | |
parent | 127ab158b65638be8ae778bec36d6fbb5b508e20 (diff) |
replacing $lang['infoimage_keywords'] by $lang['keywords']
git-svn-id: http://piwigo.org/svn/trunk@48 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/infos_images.php | 2 | ||||
-rw-r--r-- | language/francais.php | 2 | ||||
-rw-r--r-- | template/default/admin/infos_image.vtp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/admin/infos_images.php b/admin/infos_images.php index 42cb4b105..c638d883d 100644 --- a/admin/infos_images.php +++ b/admin/infos_images.php @@ -250,7 +250,7 @@ if ( isset( $page['cat'] ) ) $tpl = array( 'infoimage_general','author','infoimage_useforall','submit', 'infoimage_creation_date','infoimage_detailed','thumbnail', 'infoimage_title','infoimage_comment', - 'infoimage_creation_date','infoimage_keywords', + 'infoimage_creation_date','keywords', 'infoimage_addtoall','infoimage_removefromall', 'infoimage_keyword_separation' ); templatize_array( $tpl, 'lang', $sub ); diff --git a/language/francais.php b/language/francais.php index 4edd921de..f0f4b24eb 100644 --- a/language/francais.php +++ b/language/francais.php @@ -28,6 +28,7 @@ $lang['picture'] = 'image'; $lang['IP'] = 'IP'; $lang['close'] = 'fermer'; $lang['open'] = 'ouvrir'; +$lang['keywords'] = 'mots-clefs'; // end version 1.3 // page diapo @@ -507,7 +508,6 @@ if ( $isadmin ) // page info images // start version 1.3 // $lang['infoimage_err_date'] = 'date erronée'; - $lang['infoimage_keywords'] = 'mots-clefs'; $lang['infoimage_keyword_separation'] = '(séparer avec des ",")'; $lang['infoimage_addtoall'] = 'ajouter à tous'; $lang['infoimage_removefromall'] = 'retirer à tous'; diff --git a/template/default/admin/infos_image.vtp b/template/default/admin/infos_image.vtp index 43aa194ac..d9a4e92c5 100644 --- a/template/default/admin/infos_image.vtp +++ b/template/default/admin/infos_image.vtp @@ -27,7 +27,7 @@ </tr> <tr> <td> - <div style="margin-left:50px;">{#infoimage_keywords} {#infoimage_keyword_separation}</div> + <div style="margin-left:50px;">{#keywords} {#infoimage_keyword_separation}</div> </td> <td style="text-align:center;"> <input type="text" name="keywords_cat" value="" maxlength="255" /> @@ -53,7 +53,7 @@ <td class="row2" style="text-align:center;">{#author}</td> <td class="row2" style="text-align:center;">{#infoimage_comment}</td> <td class="row2" style="text-align:center;">{#infoimage_creation_date}</td> - <td class="row2" style="text-align:center;">{#infoimage_keywords}</td> + <td class="row2" style="text-align:center;">{#keywords}</td> </tr> <!--VTP_picture--> <tr> |