diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php b/core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php
index 8cd5b49..128b687 100644
--- a/core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php
+++ b/core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php
@@ -60,6 +60,23 @@ function getTranslatorPermissions() {
   }
 
   /**
+   * Tests field translation form when fields aren't translatable.
+   */
+  function testTranslationWithoutTranslatableFields() {
+    $this->admin_user = $this->drupalCreateUser(array('administer content types', 'translate any entity', 'access administration pages', 'access content overview', 'administer nodes', 'bypass node access'));
+    $this->drupalLogin($this->admin_user);
+
+    // Delete the only translatable field.
+    field_delete_field('field_test_et_ui_test');
+
+    $article = $this->drupalCreateNode(array('type' => 'article', 'langcode' => 'en'));
+
+    // Visit translation page.
+    $this->drupalGet('node/' . $article->nid . '/translations');
+    $this->assertRaw(t('no translatable fields'));
+  }
+
+  /**
    * Tests translate link on content admin page.
    */
   function testTranslateLinkContentAdminPage() {
diff --git a/core/modules/translation_entity/translation_entity.pages.inc b/core/modules/translation_entity/translation_entity.pages.inc
index be06e6a..294c97b 100644
--- a/core/modules/translation_entity/translation_entity.pages.inc
+++ b/core/modules/translation_entity/translation_entity.pages.inc
@@ -113,7 +113,7 @@ function translation_entity_overview(EntityInterface $entity) {
             $links['add']['title'] = t('add');
           }
           elseif ($field_ui) {
-            $entity_path = _field_ui_bundle_admin_path($entity->entityType(), $entity->bundle());
+            $entity_path = field_ui_bundle_admin_path($entity->entityType(), $entity->bundle());
             // Link directly to the fields tab to make it easier to find the
             // setting to enable translation on fields.
             $path = $entity_path . '/fields';
