diff --git a/src/Entity/Job.php b/src/Entity/Job.php
index dddb510..be0c550 100644
--- a/src/Entity/Job.php
+++ b/src/Entity/Job.php
@@ -18,6 +18,7 @@ use Drupal\Core\Session\AccountInterface;
 use Drupal\tmgmt\JobInterface;
 use Drupal\tmgmt\JobItemInterface;
 use Drupal\tmgmt\TMGMTException;
+use Drupal\tmgmt\TMGMTResponse;
 use Drupal\user\EntityOwnerInterface;
 use Drupal\user\UserInterface;
 
@@ -494,10 +495,10 @@ class Job extends ContentEntityBase implements EntityOwnerInterface, JobInterfac
   public function canRequestTranslation() {
     if ($translator = $this->getTranslator()) {
       if ($translator->canTranslate($this)) {
-        return TRUE;
+        return new TMGMTResponse(TRUE);
       }
     }
-    return FALSE;
+    return new TMGMTResponse(FALSE, t('Translation can not be requested'));
   }
 
   /**
diff --git a/src/Entity/Translator.php b/src/Entity/Translator.php
index 22316e8..81251ee 100644
--- a/src/Entity/Translator.php
+++ b/src/Entity/Translator.php
@@ -13,6 +13,7 @@ use Drupal\Core\Cache\Cache;
 use Drupal\Core\Config\Entity\ConfigEntityBase;
 use Drupal\Core\Entity\EntityStorageInterface;
 use Drupal\tmgmt\JobInterface;
+use Drupal\tmgmt\TMGMTResponse;
 use Drupal\tmgmt\TranslatorInterface;
 
 /**
@@ -299,7 +300,7 @@ class Translator extends ConfigEntityBase implements TranslatorInterface {
     if ($controller = $this->getPlugin()) {
       return $controller->canTranslate($this, $job);
     }
-    return FALSE;
+    return new TMGMTResponse(FALSE, t('Job can not be translated.'));
   }
 
   /**
@@ -309,7 +310,10 @@ class Translator extends ConfigEntityBase implements TranslatorInterface {
     if ($controller = $this->getPlugin()) {
       return $controller->isAvailable($this);
     }
-    return FALSE;
+    return new TMGMTResponse(FALSE, t('@translator is not available. Make sure it is properly !configured.'), [
+      '@translator' => $this->label(),
+      '!configured' => $this->link(t('configured'))
+    ]);
   }
 
   /**
@@ -325,26 +329,6 @@ class Translator extends ConfigEntityBase implements TranslatorInterface {
   /**
    * {@inheritdoc}
    */
-  public function getNotAvailableReason() {
-    if ($controller = $this->getPlugin()) {
-      return $controller->getNotAvailableReason($this);
-    }
-    return FALSE;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getNotCanTranslateReason(JobInterface $job) {
-    if ($controller = $this->getPlugin()) {
-      return $controller->getNotCanTranslateReason($job);
-    }
-    return FALSE;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function mapToRemoteLanguage($language) {
     return $this->getPlugin()->mapToRemoteLanguage($this, $language);
   }
diff --git a/src/Form/JobForm.php b/src/Form/JobForm.php
index 04e0b1c..b7b4195 100644
--- a/src/Form/JobForm.php
+++ b/src/Form/JobForm.php
@@ -17,6 +17,7 @@ use Drupal\Core\Url;
 use Drupal\tmgmt\Entity\Job;
 use Drupal\tmgmt\Entity\JobItem;
 use Drupal\tmgmt\JobInterface;
+use Drupal\tmgmt\TMGMTResponse;
 use Drupal\views\Views;
 
 /**
@@ -421,11 +422,13 @@ class JobForm extends TmgmtFormBase {
     $translator = $job->getTranslator();
     // Check translator availability.
     if (!empty($translator)) {
-      if (!$translator->isAvailable()) {
-        $form_state->setErrorByName('translator', $translator->getNotAvailableReason());
+      $available_result = $translator->isAvailable();
+      $translatable_result = $translator->canTranslate($job);
+      if (!($available_result->getSuccess())) {
+        $form_state->setErrorByName('translator', $available_result->getMessage());
       }
-      elseif (!$translator->canTranslate($job)) {
-        $form_state->setErrorByName('translator', $translator->getNotCanTranslateReason($job));
+      elseif (!($translatable_result->getSuccess())) {
+        $form_state->setErrorByName('translator', $translatable_result->getMessage());
       }
     }
   }
@@ -497,12 +500,13 @@ class JobForm extends TmgmtFormBase {
     if (!$translator) {
       return $form;
     }
-    if (!$translator->isAvailable()) {
-      $form['#description'] = Xss::filter($job->getTranslator()->getNotAvailableReason());
+    if (!$translator->isAvailable()->getSuccess()) {
+      $result = new TMGMTResponse(FALSE, t('@translator is not available. Make sure it is properly !configured.'), array('@translator' => $translator->label(), '!configured' => $translator->link(t('configured'))));
+      $form['#description'] = Xss::filter($result->getMessage());
     }
     // @todo: if the target language is not defined, the check will not work if the first language in the list is not available.
-    elseif ($job->getTargetLangcode() && !$translator->canTranslate($job)) {
-      $form['#description'] = Xss::filter($job->getTranslator()->getNotCanTranslateReason($job));
+    elseif ($job->getTargetLangcode() && !$translator->canTranslate($job)->getSuccess()) {
+      $form['#description'] = Xss::filter($job->getTranslator()->canTranslate($job)->getMessage());
     }
     else {
       $plugin_ui = $this->translatorManager->createUIInstance($translator->getPluginId());
diff --git a/src/TMGMTResponse.php b/src/TMGMTResponse.php
new file mode 100644
index 0000000..323e6c5
--- /dev/null
+++ b/src/TMGMTResponse.php
@@ -0,0 +1,65 @@
+<?php
+
+/**
+ * @file
+ * Contains Drupal\tmgmt\TMGMTResponse.
+ */
+
+namespace Drupal\tmgmt;
+
+/**
+ * TMGMT Response class.
+ */
+class TMGMTResponse {
+
+  /**
+   * TRUE or FALSE for response.
+   *
+   * @var boolean
+   */
+  protected $success;
+
+  /**
+   * Message in case success is FALSE.
+   *
+   * @var string
+   */
+  protected $message;
+
+  /**
+   * Argument about the error.
+   *
+   * @var array
+   */
+  protected $args;
+
+  /**
+   * Constructs a new TMGMT Response Object.
+   *
+   * @param bool $success
+   *   Response either TRUE or FALSE.
+   * @param string $message
+   *    Message about the error.
+   */
+  public function __construct($success, $message = "") {
+    $this->success = $success;
+    if (!$success) {
+      $this->message = $message;
+    }
+  }
+
+  /**
+   * Returns the object message.
+   */
+  public function getMessage() {
+    $argumented_message = t($this->message);
+    return $argumented_message;
+  }
+
+  /**
+   * Returns the object state on success.
+   */
+  public function getSuccess() {
+    return $this->success;
+  }
+}
diff --git a/src/Tests/TMGMTUiTest.php b/src/Tests/TMGMTUiTest.php
index 4300414..44194f5 100644
--- a/src/Tests/TMGMTUiTest.php
+++ b/src/Tests/TMGMTUiTest.php
@@ -289,6 +289,13 @@ class TMGMTUiTest extends TMGMTTestBase {
     // Verify that we are on the submit job page.
     $this->drupalPostForm(NULL, array(), t('Submit to translator'));
 
+    // Test for Unavailable/Unconfigured Translators.
+    $this->default_translator->setSetting('action', 'not_translatable');
+    $this->default_translator->save();
+    $this->drupalGet('admin/tmgmt/jobs/' . $job->id());
+    $this->drupalPostForm(NULL, array(), t('Submit to translator'));
+    $this->assertText(t('Test translator (auto created) can not translate from English to German.'));
+
     // Login as administrator to delete a job.
     $this->loginAsAdmin();
     $this->drupalGet('admin/tmgmt/jobs');
diff --git a/src/TranslatorInterface.php b/src/TranslatorInterface.php
index 2dce386..60afd3f 100644
--- a/src/TranslatorInterface.php
+++ b/src/TranslatorInterface.php
@@ -132,7 +132,7 @@ interface TranslatorInterface extends ConfigEntityInterface {
    * @param \Drupal\tmgmt\JobInterface Job
    *   The Job entity that should be translated.
    *
-   * @return bool
+   * @return TMGMTResponse
    *   TRUE if the job can be processed and translated, FALSE otherwise.
    */
   public function canTranslate(JobInterface $job);
@@ -140,7 +140,7 @@ interface TranslatorInterface extends ConfigEntityInterface {
   /**
    * Checks whether a translator is available.
    *
-   * @return bool
+   * @return TMGMTResponse
    *   TRUE if the translator plugin is available, FALSE otherwise.
    */
   public function isAvailable();
@@ -154,19 +154,6 @@ interface TranslatorInterface extends ConfigEntityInterface {
   public function hasCheckoutSettings(JobInterface $job);
 
   /**
-   * @todo Remove this once http://drupal.org/node/1420364 is done.
-   */
-  public function getNotAvailableReason();
-
-  /**
-   * @todo Remove this once http://drupal.org/node/1420364 is done.
-   *
-   * * @param \Drupal\tmgmt\JobInterface $job
-   *   The Job entity that should be translated.
-   */
-  public function getNotCanTranslateReason(JobInterface $job);
-
-  /**
    * Maps local language to remote language.
    *
    * @param string $language
diff --git a/src/TranslatorPluginBase.php b/src/TranslatorPluginBase.php
index 4de183a..bc82896 100644
--- a/src/TranslatorPluginBase.php
+++ b/src/TranslatorPluginBase.php
@@ -41,7 +41,7 @@ abstract class TranslatorPluginBase extends PluginBase implements TranslatorPlug
    */
   public function isAvailable(TranslatorInterface $translator) {
     // Assume that the translation service is always available.
-    return TRUE;
+    return new TMGMTResponse(TRUE);
   }
 
   /**
@@ -49,12 +49,16 @@ abstract class TranslatorPluginBase extends PluginBase implements TranslatorPlug
    */
   public function canTranslate(TranslatorInterface $translator, JobInterface $job) {
     // The job is only translatable if the translator is available too.
-    if ($this->isAvailable($translator) && array_key_exists($job->getTargetLangcode(), $translator->getSupportedTargetLanguages($job->getSourceLangcode()))) {
+    if ($this->isAvailable($translator)->getSuccess() && array_key_exists($job->getTargetLangcode(), $translator->getSupportedTargetLanguages($job->getSourceLangcode()))) {
       // We can only translate this job if the target language of the job is in
       // one of the supported languages.
-      return TRUE;
+      return new TMGMTResponse(TRUE);
     }
-    return FALSE;
+    return new TMGMTResponse(FALSE, t('@translator can not translate from @source to @target.', array(
+      '@translator' => $translator->label(),
+      '@source' => $job->getSourceLanguage()->getName(),
+      '@target' => $job->getTargetLanguage()->getName()
+    )));
   }
 
   /**
@@ -169,20 +173,6 @@ abstract class TranslatorPluginBase extends PluginBase implements TranslatorPlug
   /**
    * {@inheritdoc}
    */
-  public function getNotCanTranslateReason(JobInterface $job) {
-    return t('@translator can not translate from @source to @target.', array('@translator' => $job->getTranslator()->label(), '@source' => $job->getSourceLanguage()->getName(), '@target' => $job->getTargetLanguage()->getName()));
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function getNotAvailableReason(TranslatorInterface $translator) {
-    return t('@translator is not available. Make sure it is properly !configured.', array('@translator' => $this->pluginDefinition['label'], '!configured' => $translator->link(t('configured'))));
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function defaultSettings() {
     $defaults = array('auto_accept' => FALSE);
     // Check if any default settings are defined in the plugin info.
diff --git a/src/TranslatorPluginInterface.php b/src/TranslatorPluginInterface.php
index c6af5ce..2b3eb11 100644
--- a/src/TranslatorPluginInterface.php
+++ b/src/TranslatorPluginInterface.php
@@ -14,31 +14,20 @@ use Drupal\Component\Plugin\PluginInspectionInterface;
  *
  * @ingroup tmgmt_translator
  */
-interface TranslatorPluginInterface extends PluginInspectionInterface {
 
+interface TranslatorPluginInterface extends PluginInspectionInterface {
   /**
    * Checks whether a translator is available.
    *
    * @param TranslatorInterface $translator
    *   The translator entity.
    *
-   * @return boolean
-   *   TRUE if the translator plugin is available, FALSE otherwise.
+   * @return TMGMTResponse
+   *   Object Response with values TRUE if the translator plugin is available,
+   *   FALSE otherwise and a message.
    */
   public function isAvailable(TranslatorInterface $translator);
 
-  /**
-   * Return a reason why the translator is not available.
-   *
-   * @param TranslatorInterface $translator
-   *   The translator entity.
-   *
-   * Might be called when isAvailable() returns FALSE to get a reason that
-   * can be displayed to the user.
-   *
-   * @todo Remove this once http://drupal.org/node/1420364 is done.
-   */
-  public function getNotAvailableReason(TranslatorInterface $translator);
 
   /**
    * Check whether this service can handle a particular translation job.
@@ -48,25 +37,13 @@ interface TranslatorPluginInterface extends PluginInspectionInterface {
    * @param \Drupal\tmgmt\JobInterface $job
    *   The Job entity that should be translated.
    *
-   * @return boolean
-   *   TRUE if the job can be processed and translated, FALSE otherwise.
+   * @return TMGMTResponse
+   *   Object Response with values TRUE if the job can be processed and translated,
+   *   FALSE otherwise and a message.
    */
   public function canTranslate(TranslatorInterface $translator, JobInterface $job);
 
   /**
-   * Return a reason why the translator is not able to translate this job.
-   *
-   * @param \Drupal\tmgmt\JobInterface $job
-   *   The job entity.
-   *
-   * Might be called when canTranslate() returns FALSE to get a reason that
-   * can be displayed to the user.
-   *
-   * @todo Remove this once http://drupal.org/node/1420364 is done.
-   */
-  public function getNotCanTranslateReason(JobInterface $job);
-
-  /**
    * Specifies default mappings for local to remote language codes.
    *
    * This method can be used in case we know in advance what language codes are
diff --git a/tmgmt.module b/tmgmt.module
index 9f140e4..d3a2adb 100644
--- a/tmgmt.module
+++ b/tmgmt.module
@@ -391,7 +391,7 @@ function tmgmt_message_create($message = '', $variables = array(), $values = arr
 function tmgmt_translator_load_available($job) {
   $translators = Translator::loadMultiple();
   foreach ($translators as $name => $translator) {
-    if (!$translator->isAvailable() || (isset($job) && !$translator->canTranslate($job))) {
+    if (!$translator->isAvailable()->getSuccess() || (isset($job) && !$translator->canTranslate($job)->getSuccess())) {
       unset($translators[$name]);
     }
   }
@@ -468,10 +468,10 @@ function tmgmt_translator_labels() {
 function tmgmt_translator_labels_flagged($job = NULL) {
   $labels = array();
   foreach (Translator::loadMultiple() as $translator) {
-    if (!$translator->isAvailable()) {
+    if (!$translator->isAvailable()->getSuccess()) {
       $labels[$translator->id()] = t('@label (not available)', array('@label' => $translator->label()));
     }
-    elseif (isset($job) && !$translator->canTranslate($job)) {
+    elseif (isset($job) && !$translator->canTranslate($job)->getSuccess()) {
       $labels[$translator->id()] = t('@label (unsupported)', array('@label' => $translator->label()));
     }
     else {
diff --git a/tmgmt_test/src/Plugin/tmgmt/Translator/TestTranslator.php b/tmgmt_test/src/Plugin/tmgmt/Translator/TestTranslator.php
index 9d6f6be..97211fa 100644
--- a/tmgmt_test/src/Plugin/tmgmt/Translator/TestTranslator.php
+++ b/tmgmt_test/src/Plugin/tmgmt/Translator/TestTranslator.php
@@ -11,6 +11,7 @@ use Drupal\Core\Form\FormStateInterface;
 use Drupal\tmgmt\Entity\Translator;
 use Drupal\tmgmt\JobInterface;
 use Drupal\tmgmt\JobItemInterface;
+use Drupal\tmgmt\TMGMTResponse;
 use Drupal\tmgmt\TranslatorInterface;
 use Drupal\tmgmt\TranslatorPluginBase;
 use Drupal\tmgmt\TranslatorRejectDataInterface;
@@ -99,7 +100,11 @@ class TestTranslator extends TranslatorPluginBase implements TranslatorRejectDat
    */
   function canTranslate(TranslatorInterface $translator, JobInterface $job) {
     if ($job->getSetting('action') == 'not_translatable') {
-      return FALSE;
+      return new TMGMTResponse(FALSE, t('@translator can not translate from @source to @target.', array(
+        '@translator' => $translator->label(),
+        '@source' => $job->getSourceLanguage()->getName(),
+        '@target' => $job->getTargetLanguage()->getName()
+      )));
     }
     return parent::canTranslate($translator, $job);
   }
diff --git a/translators/tmgmt_file/src/Plugin/tmgmt/Translator/FileTranslator.php b/translators/tmgmt_file/src/Plugin/tmgmt/Translator/FileTranslator.php
index e8e8213..dd57642 100644
--- a/translators/tmgmt_file/src/Plugin/tmgmt/Translator/FileTranslator.php
+++ b/translators/tmgmt_file/src/Plugin/tmgmt/Translator/FileTranslator.php
@@ -8,6 +8,7 @@
 namespace Drupal\tmgmt_file\Plugin\tmgmt\Translator;
 
 use Drupal\tmgmt\JobInterface;
+use Drupal\tmgmt\TMGMTResponse;
 use Drupal\tmgmt\TranslatorInterface;
 use Drupal\tmgmt\TranslatorPluginBase;
 
@@ -28,7 +29,7 @@ class FileTranslator extends TranslatorPluginBase {
    */
   public function canTranslate(TranslatorInterface $translator, JobInterface $job) {
     // Anything can be exported.
-    return TRUE;
+    return new TMGMTResponse(TRUE);
   }
 
   /**
