Skip to content
Snippets Groups Projects
Commit e6849ae6 authored by Remco Gerbrands's avatar Remco Gerbrands
Browse files

lang: english comments only

parent 089fc33c
No related branches found
No related tags found
No related merge requests found
...@@ -19,14 +19,14 @@ ...@@ -19,14 +19,14 @@
/** /**
\file htdocs/bookmarks/bookmark.class.php \file htdocs/bookmarks/bookmark.class.php
\ingroup bookmark \ingroup bookmark
\brief Fichier de la classe des bookmark \brief File the bookmark class
\version $Id$ \version $Id$
*/ */
/** /**
\class Bookmark \class Bookmark
\brief Classe permettant la gestion des bookmarks \brief Class for managing bookmarks
*/ */
class Bookmark class Bookmark
...@@ -43,9 +43,9 @@ class Bookmark ...@@ -43,9 +43,9 @@ class Bookmark
/** /**
* \brief Constructeur * \brief Manufacturer
* \param db Handler d'acc�s base de donn�es * \param db Handler for Database Access
* \param id Id du bookmark * \param id Bookmark Id
*/ */
function Bookmark($db, $id=-1) function Bookmark($db, $id=-1)
{ {
...@@ -54,8 +54,8 @@ class Bookmark ...@@ -54,8 +54,8 @@ class Bookmark
} }
/** /**
* \brief Charge le bookmark * \brief Directs the bookmark
* \param id Id du bookmark � charger * \param id Bookmark Id Loader
*/ */
function fetch($id) function fetch($id)
{ {
...@@ -173,8 +173,8 @@ class Bookmark ...@@ -173,8 +173,8 @@ class Bookmark
} }
/** /**
* \brief Supprime le bookmark * \brief Removes the bookmark
* \param id Id bookmark � supprimer * \param id Id removed bookmark
* \return int <0 si ko, >0 si ok * \return int <0 si ko, >0 si ok
*/ */
function remove($id) function remove($id)
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
/** /**
* \file htdocs/bookmarks/fiche.php * \file htdocs/bookmarks/fiche.php
* \brief Page affichage/creation des bookmarks * \brief Page display/creation of bookmarks
* \ingroup bookmark * \ingroup bookmark
* \version $Id$ * \version $Id$
*/ */
...@@ -130,7 +130,7 @@ $html=new Form($db); ...@@ -130,7 +130,7 @@ $html=new Form($db);
if ($action == 'create') if ($action == 'create')
{ {
/* /*
* Fiche bookmark en mode creation * Fact bookmark creation mode
*/ */
print '<form action="fiche.php" method="post" enctype="multipart/form-data">'."\n"; print '<form action="fiche.php" method="post" enctype="multipart/form-data">'."\n";
...@@ -170,7 +170,7 @@ if ($action == 'create') ...@@ -170,7 +170,7 @@ if ($action == 'create')
if ($_GET["id"] > 0 && ! preg_match('/^add/i',$_GET["action"])) if ($_GET["id"] > 0 && ! preg_match('/^add/i',$_GET["action"]))
{ {
/* /*
* Fiche bookmark en mode visu ou edition * Fact bookmark mode or visually edition
*/ */
$bookmark=new Bookmark($db); $bookmark=new Bookmark($db);
$bookmark->fetch($_GET["id"]); $bookmark->fetch($_GET["id"]);
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
/** /**
* \file htdocs/bookmarks/liste.php * \file htdocs/bookmarks/liste.php
* \brief Page affichage des bookmarks * \brief Page display bookmarks
* \ingroup bookmark * \ingroup bookmark
* \version $Id$ * \version $Id$
*/ */
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
/** /**
\file htdocs/bookmarks/pre.inc.php \file htdocs/bookmarks/pre.inc.php
\ingroup bookmark \ingroup bookmark
\brief Fichier de gestion du menu gauche des bookmarks \brief File Management menu left bookmarks
\version $Id$ \version $Id$
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment