From 0690467b153fbefdcfb738fd7825e95bc0333b74 Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sat, 9 Nov 2019 16:11:37 +0100 Subject: [PATCH] internationalization --- htdocs/adherents/subscription.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/adherents/subscription.php b/htdocs/adherents/subscription.php index f2250af5790..b591a29a6e9 100644 --- a/htdocs/adherents/subscription.php +++ b/htdocs/adherents/subscription.php @@ -24,7 +24,7 @@ /** * \file htdocs/adherents/subscription.php * \ingroup member - * \brief Onglet d'ajout, edition, suppression des adhesions d'un adherent + * \brief tab for Adding, editing, deleting a member's memberships */ require '../main.inc.php'; @@ -86,7 +86,7 @@ if ($rowid) // Define variables to know what current user can do on properties of user linked to edited member if ($object->user_id) { - // $user est le user qui edite, $object->user_id est l'id de l'utilisateur lies au membre edite + // $user is the user editing, $object->user_id is the user's id linked to 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) @@ -554,12 +554,12 @@ if ($rowid > 0) if (! $adht->subscription) { print $langs->trans("SubscriptionNotRecorded"); - if ($object->statut > 0) print " ".img_warning($langs->trans("Late")); // Affiche picto retard uniquement si non brouillon et non resilie + if ($object->statut > 0) print " ".img_warning($langs->trans("Late")); // Display a delay picto only if it is not a draft and is not canceled } else { print $langs->trans("SubscriptionNotReceived"); - if ($object->statut > 0) print " ".img_warning($langs->trans("Late")); // Affiche picto retard uniquement si non brouillon et non resilie + if ($object->statut > 0) print " ".img_warning($langs->trans("Late")); // Display a delay picto only if it is not a draft and is not canceled } } print '';