diff --git a/htdocs/adherents/admin/adherent_extrafields.php b/htdocs/adherents/admin/adherent_extrafields.php
index 81896a12490..17921eabf3c 100644
--- a/htdocs/adherents/admin/adherent_extrafields.php
+++ b/htdocs/adherents/admin/adherent_extrafields.php
@@ -94,7 +94,7 @@ if ($action != 'create' && $action != 'edit')
if ($action == 'create')
{
- print "
";
+ print '
';
print load_fiche_titre($langs->trans('NewAttribute'));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_add.tpl.php';
@@ -107,7 +107,7 @@ if ($action == 'create')
/* ************************************************************************** */
if ($action == 'edit' && ! empty($attrname))
{
- print "
";
+ print '
';
print load_fiche_titre($langs->trans("FieldEdition", $attrname));
require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_edit.tpl.php';
diff --git a/htdocs/adherents/card.php b/htdocs/adherents/card.php
index 732504ed923..accdedc0141 100644
--- a/htdocs/adherents/card.php
+++ b/htdocs/adherents/card.php
@@ -94,7 +94,7 @@ if ($id > 0)
// Define variables to know what current user can do on properties of user linked to edited member
if ($object->user_id)
{
- // $ User is the user who edits, $ object->user_id is the id of the related user in the edited member
+ // $User is the user who edits, $object->user_id is the id of the related user in the edited member
$caneditfielduser=((($user->id == $object->user_id) && $user->rights->user->self->creer)
|| (($user->id != $object->user_id) && $user->rights->user->user->creer));
$caneditpassworduser=((($user->id == $object->user_id) && $user->rights->user->self->password)
@@ -268,7 +268,7 @@ if (empty($reshook))
$langs->load("errors");
setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Company")), null, 'errors');
}
- // Test si le login existe deja
+ // Check if the login already exists
if (empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED))
{
if (empty($login)) {
diff --git a/htdocs/modulebuilder/template/class/myobject.class.php b/htdocs/modulebuilder/template/class/myobject.class.php
index ad04cc554d3..673e9539e74 100644
--- a/htdocs/modulebuilder/template/class/myobject.class.php
+++ b/htdocs/modulebuilder/template/class/myobject.class.php
@@ -237,7 +237,7 @@ class MyObject extends CommonObject
}
/**
- * Clone and object into another one
+ * Clone an object into another one
*
* @param User $user User that creates
* @param int $fromid Id of object to clone
@@ -570,9 +570,9 @@ class MyObject extends CommonObject
}
/**
- * Charge les informations d'ordre info dans l'objet commande
+ * Load the info information in the object
*
- * @param int $id Id of order
+ * @param int $id Id of object
* @return void
*/
public function info($id)
@@ -636,7 +636,7 @@ class MyObject extends CommonObject
/**
* Action executed by scheduler
- * CAN BE A CRON TASK. In such a case, paramerts come from the schedule job setup field 'Parameters'
+ * CAN BE A CRON TASK. In such a case, parameters come from the schedule job setup field 'Parameters'
*
* @return int 0 if OK, <>0 if KO (this function is used also by cron so only 0 is OK)
*/