diff --git a/src/Form/MothermayiSettingsForm.php b/src/Form/MothermayiSettingsForm.php
index 184fe71..8356493 100644
--- a/src/Form/MothermayiSettingsForm.php
+++ b/src/Form/MothermayiSettingsForm.php
@@ -4,13 +4,9 @@ namespace Drupal\mothermayi\Form;
 
 use Drupal\Core\Form\ConfigFormBase;
 use Drupal\Core\Form\FormStateInterface;
-use Drupal\Core\Render\Element;
-use Drupal\Core\StringTranslation\StringTranslationTrait;
 
 class MothermayiSettingsForm extends ConfigFormBase {
 
-  use StringTranslationTrait;
-
   /**
    * {@inheritdoc}
    */
@@ -64,8 +60,8 @@ class MothermayiSettingsForm extends ConfigFormBase {
     $fs = [
       '#type' => 'fieldset',
       '#title' => $this->t('Secret word'),
-      '#description' => $this->t('Specify a site-specific word that potential users must enter before applying for an account. See discussion at !url.', [
-        '!url' => \Drupal::l($this->t('the Drupal Mother May I site'), \Drupal\Core\Url::fromUri('http://drupal.org/project/mothermayi'))
+      '#description' => $this->t('Specify a site-specific word that potential users must enter before applying for an account. See discussion at @url.', [
+        '@url' => \Drupal::l($this->t('the Drupal Mother May I site'), \Drupal\Core\Url::fromUri('http://drupal.org/project/mothermayi'))
         ]),
     ];
 
@@ -184,6 +180,4 @@ class MothermayiSettingsForm extends ConfigFormBase {
       }
     }
   }
-  
-
 }
