diff --git a/module/Application/src/Application/Form/MetadonneeTheseForm.php b/module/Application/src/Application/Form/MetadonneeTheseForm.php
index ec76ff00d6e7c6b81410db4479f06deed7fd9b85..585aee40180a38d302628a4cff243428fcf7438f 100644
--- a/module/Application/src/Application/Form/MetadonneeTheseForm.php
+++ b/module/Application/src/Application/Form/MetadonneeTheseForm.php
@@ -84,7 +84,7 @@ class MetadonneeTheseForm extends Form implements InputFilterProviderInterface
             'type'       => 'Textarea',
             'name'       => $name = 'resume',
             'options'    => [
-                'label' => "Resumé en <u>français</u> (" . ($ml = $this->resumeMaxlength[$name]) . " caractères maximum, espaces compris)",
+                'label' => "Résumé en <u>français</u> (" . ($ml = $this->resumeMaxlength[$name]) . " caractères maximum, espaces compris)",
                 'label_options' => [
                     'disable_html_escape' => true,
                 ]
@@ -100,7 +100,7 @@ class MetadonneeTheseForm extends Form implements InputFilterProviderInterface
             'type'       => 'Textarea',
             'name'       => $name = 'resumeAnglais',
             'options'    => [
-                'label' => "Resumé en <u>anglais</u> (" . ($ml = $this->resumeMaxlength[$name]) . " caractères maximum, espaces compris)",
+                'label' => "Résumé en <u>anglais</u> (" . ($ml = $this->resumeMaxlength[$name]) . " caractères maximum, espaces compris)",
                 'label_options' => [
                     'disable_html_escape' => true,
                 ]
diff --git a/module/Application/view/application/these/attestation.phtml b/module/Application/view/application/these/attestation.phtml
index 3cf6bb98f0a3e4f67b3952eeabc6e3d7b3bd88ac..47de30a31a6523013ed173a6cff1f9239d27f499 100644
--- a/module/Application/view/application/these/attestation.phtml
+++ b/module/Application/view/application/these/attestation.phtml
@@ -26,7 +26,7 @@ $canEdit = $this->isAllowed($these, $privilege);
 <div class="box panel panel-info">
 
     <div class="panel-heading">
-        <h2>Attestations</h2>
+        <h2>Attestation</h2>
     </div>
 
     <div class="panel-body">
diff --git a/module/Application/view/application/these/modifier-description.phtml b/module/Application/view/application/these/modifier-description.phtml
index 588b1996259c3ab15f121e2e8f491301eddab561..f2d8f54c2bf3f52425f817a69273b8db226ed0e4 100644
--- a/module/Application/view/application/these/modifier-description.phtml
+++ b/module/Application/view/application/these/modifier-description.phtml
@@ -1,5 +1,6 @@
 <?php
 
+use Application\Controller\TheseController;
 use Application\Entity\Db\These;
 use Application\Provider\Privilege\ThesePrivileges;
 use Application\View\Renderer\PhpRenderer;
@@ -12,6 +13,8 @@ use Zend\Form\Form;
  * @var Form   $form
  *
  * @method string formControlGroup()
+ *
+ * @see TheseController::modifierDescriptionAction()
  */
 
 $canEdit = true;