diff --git a/src/Form/LingotekSettingsTabContentForm.php b/src/Form/LingotekSettingsTabContentForm.php
index 3d9d92a..9bb1f07 100644
--- a/src/Form/LingotekSettingsTabContentForm.php
+++ b/src/Form/LingotekSettingsTabContentForm.php
@@ -91,7 +91,7 @@ class LingotekSettingsTabContentForm extends LingotekConfigFormBase {
           '#default_value' => $lingotek_config->isEnabled($entity_id, $bundle_id),
         ];
         $row['content_type'] = array(
-          '#markup' => $this->t($bundle['label']),
+          '#markup' => $bundle['label'],
         );
         $row['profiles'] = $this->retrieveProfiles($entity_id, $bundle_id);
         $row['fields'] = $this->retrieveFields($entity_id, $bundle_id);
diff --git a/src/Tests/Form/LingotekSettingsTabContentFormTest.php b/src/Tests/Form/LingotekSettingsTabContentFormTest.php
index 40c144f..344a5d5 100644
--- a/src/Tests/Form/LingotekSettingsTabContentFormTest.php
+++ b/src/Tests/Form/LingotekSettingsTabContentFormTest.php
@@ -33,6 +33,7 @@ class LingotekSettingsTabContentFormTest extends LingotekTestBase {
       ));
 
       $this->createImageField('field_image', 'article');
+      $this->createImageField('user_picture', 'user', 'user');
     }
 
   }
@@ -53,6 +54,8 @@ class LingotekSettingsTabContentFormTest extends LingotekTestBase {
     // picked up.
     ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')->setLanguageAlterable(TRUE)->save();
     \Drupal::service('content_translation.manager')->setEnabled('node', 'article', TRUE);
+    ContentLanguageSettings::loadByEntityTypeBundle('user', 'user')->setLanguageAlterable(TRUE)->save();
+    \Drupal::service('content_translation.manager')->setEnabled('user', 'user', TRUE);
 
     drupal_static_reset();
     \Drupal::entityManager()->clearCachedDefinitions();
@@ -80,6 +83,9 @@ class LingotekSettingsTabContentFormTest extends LingotekTestBase {
       'node[article][fields][body]' => 1,
       'node[article][fields][field_image]' => 1,
       'node[article][fields][field_image:properties][alt]' => 'alt',
+      'user[user][enabled]' => 1,
+      'user[user][fields][user_picture]' => 1,
+      'user[user][fields][user_picture:properties][alt]' => 'alt',
     ];
     $this->drupalPostForm(NULL, $edit, 'Save', [], [], 'lingoteksettings-tab-content-form');
 
diff --git a/src/Tests/LingotekTestBase.php b/src/Tests/LingotekTestBase.php
index b7b386e..195c9d4 100644
--- a/src/Tests/LingotekTestBase.php
+++ b/src/Tests/LingotekTestBase.php
@@ -29,9 +29,11 @@ abstract class LingotekTestBase extends WebTestBase {
    * Create a new image field.
    *
    * @param string $name
-   *   The name of the new field (all lowercase), exclude the "field_" prefix.
+   *   The name of the new field (all lowercase).
    * @param string $type_name
-   *   The node type that this field will be added to.
+   *   The bundle that this field will be added to.
+   * @param string $entity_type_id
+   *   The entity type that this field will be added to. Defaults to 'node'
    * @param array $storage_settings
    *   A list of field storage settings that will be added to the defaults.
    * @param array $field_settings
@@ -39,10 +41,10 @@ abstract class LingotekTestBase extends WebTestBase {
    * @param array $widget_settings
    *   A list of widget settings that will be added to the widget defaults.
    */
-  function createImageField($name, $type_name, $storage_settings = array(), $field_settings = array(), $widget_settings = array()) {
+  function createImageField($name, $type_name, $entity_type_id = 'node', $storage_settings = array(), $field_settings = array(), $widget_settings = array()) {
     entity_create('field_storage_config', array(
       'field_name' => $name,
-      'entity_type' => 'node',
+      'entity_type' => $entity_type_id,
       'type' => 'image',
       'settings' => $storage_settings,
       'cardinality' => !empty($storage_settings['cardinality']) ? $storage_settings['cardinality'] : 1,
@@ -51,21 +53,21 @@ abstract class LingotekTestBase extends WebTestBase {
     $field_config = entity_create('field_config', array(
       'field_name' => $name,
       'label' => $name,
-      'entity_type' => 'node',
+      'entity_type' => $entity_type_id,
       'bundle' => $type_name,
       'required' => !empty($field_settings['required']),
       'settings' => $field_settings,
     ));
     $field_config->save();
 
-    entity_get_form_display('node', $type_name, 'default')
+    entity_get_form_display($entity_type_id, $type_name, 'default')
       ->setComponent($name, array(
         'type' => 'image_image',
         'settings' => $widget_settings,
       ))
       ->save();
 
-    entity_get_display('node', $type_name, 'default')
+    entity_get_display($entity_type_id, $type_name, 'default')
       ->setComponent($name)
       ->save();
 
