diff --git a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
index 495ebc0..24de860 100644
--- a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
+++ b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
@@ -18,6 +18,8 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface;
 use Drupal\Core\Field\WidgetBase;
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Field\FieldItemListInterface;
+use Drupal\Core\Render\Element;
+use Drupal\field\Entity\FieldConfig;
 use Drupal\paragraphs;
 use Symfony\Component\Validator\ConstraintViolationInterface;
 
@@ -542,6 +544,15 @@ class InlineParagraphsWidget extends WidgetBase {
 
       if ($item_mode == 'edit') {
         $display->buildForm($paragraphs_entity, $element['subform'], $form_state);
+        foreach (Element::children($element['subform']) as $fieldname) {
+          $translatable = $paragraphs_entity->{$fieldname}->getFieldDefinition()->isTranslatable();
+          if ($translatable) {
+            $element['subform'][$fieldname]['widget']['#after_build'][] = [
+              get_class($this),
+              'removeTranslatabilityCue'
+            ];
+          }
+        }
       }
       elseif ($item_mode == 'preview') {
         $element['subform'] = array();
@@ -1166,4 +1177,26 @@ class InlineParagraphsWidget extends WidgetBase {
       $this->isTranslating = TRUE;
     }
   }
+
+  /**
+   * After-build callback for removing the translatability cue from the widget.
+   *
+   * If the fields on the paragraph type are translatable,
+   * ContentTranslationHandler::addTranslatabilityClue()adds an
+   * "(all languages)" suffix to the widget title. That suffix is incorrect and
+   * is being removed by this method using a #after_build on the field widget.
+   *
+   * @param array $element
+   * @param \Drupal\Core\Form\FormStateInterface $form_state
+   *
+   * @return array
+   */
+  public static function removeTranslatabilityCue(array $element, FormStateInterface $form_state) {
+    foreach (Element::children($element) as $delta) {
+      if (array_key_exists('#title', $element)) {
+        $element[$delta]['value']['#title'] = $element['#title'];
+      }
+    }
+    return $element;
+  }
 }
